All upstream processing of sequences from QIIME2 can be found here.
Preliminary analyses for microeukaryote tag-sequence survey.
Description: Investigate the diversity of single-celled microbial eukaryotic communities across several deep-sea hydrothermal vent sites (including NE Pacific, Caribbean). We plan to address questions related to the environmental factors that shape protistan community dynamics, and determine if patterns in species diversity and distribution vary at different deep-sea habitats. These questions will be addressed using similarly generated metabarcoding data from several distinct hydrothermal vents. Along with characterizing community structure, we plan to evaluate interactions between protist species (to identify putative predator-prey or parasite-host relationships) and their environment (to explore their relationship to geochemical properties).
Questions to address
What is the general biogeography and distribution of the deep-sea hydrothermal vent microbial eukaryotic community?
What community structure features (i.e., species richness, proportion cosmopolitan versus endemic, species evenness) are shared across or unique to deep-sea hydrothermal vent sites?
What environmental features (i.e., temperature, geochemistry) influence microbial eukaryotic community diversity? Can we identify if certain environmental factors select for putative vent endemics?
To explore microbial eukaryotic community diversity at all three sites, below functions have been written to pass 18S data for each site through the same analysis. This will be done for all sites together and for them individually.
Sections below highlight Axial Seamount, Mid-Cayman Rise, and Gorda Ridge data individually.
axial <- c("Axial")
mcr <- c("VonDamm", "Piccard")
gr <- c("GordaRidge")
all <- c("Axial", "VonDamm", "Piccard", "GordaRidge")
load("data-input/asv-tables-processed-27012022.RData", verbose = TRUE)## Loading objects:
## asv_insitu
## asv_insitu_qc
## insitu_asv_wClass
Create a bar plot showing the relative sequence abundance of 18S results to the Supergroup and Phylum level. Function averages across replicates and then sums to the phylum and supergroup level. Bar plot shows the relative sequence abundance.
make_bar_relabun <- function(df, selection){
df_out <- df %>%
filter(SITE %in% selection) %>%
filter(Domain == "Eukaryota") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
group_by(FeatureID, Taxon, Domain, Supergroup, Phylum, Class, Order, Family, Genus, Species,
VENT, SITE, SAMPLETYPE, YEAR, DATASET) %>%
summarise(SEQ_AVG_REP = mean(value)) %>%
ungroup()
supergroup <- df_out %>%
group_by(SITE, SAMPLETYPE, VENT, YEAR, Supergroup) %>%
summarise(SEQ_SUM = sum(SEQ_AVG_REP)) %>%
ggplot(aes(x = VENT, y = SEQ_SUM, fill = Supergroup)) +
geom_bar(stat = "identity", position = "fill", color = "black", width = 0.9) +
facet_grid(. ~ SITE +YEAR + SAMPLETYPE, scale = "free", space = "free") +
theme_linedraw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
strip.background = element_blank(), strip.text = element_text(color = "black"),
legend.position = "right") +
scale_y_continuous(expand = c(0,0)) +
# scale_fill_brewer(palette = "Set2") +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
labs(x = "", y = "Relative abundance")
phylum <- df_out %>%
unite(SupergroupPhylum, Supergroup, Phylum, sep = "-") %>%
group_by(SITE, SAMPLETYPE, VENT, YEAR, SupergroupPhylum) %>%
summarise(SEQ_SUM = sum(SEQ_AVG_REP)) %>%
ggplot(aes(x = VENT, y = SEQ_SUM, fill = SupergroupPhylum)) +
geom_bar(stat = "identity", position = "fill", color = "black", width = 0.9) +
facet_grid(. ~ SITE +YEAR + SAMPLETYPE, scale = "free", space = "free") +
theme_linedraw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
strip.background = element_blank(), strip.text = element_text(color = "black"),
legend.position = "right") +
scale_y_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#f1eef6", "#d7b5d8", "#df65b0", "#ce1256", "#fc9272", "#ef3b2c",
"#800026", "#fff7bc", "#fec44f", "#d95f0e", "#a63603", "#74c476", "#238b45",
"#00441b", "#7fcdbb", "#084081", "#c6dbef", "#2b8cbe", "#016c59", "#bcbddc",
"#807dba", "#54278f", "#bdbdbd", "black", "white", "#969696", "#525252", "#f1eef6", "#d7b5d8", "#df65b0", "#ce1256", "#fc9272", "#ef3b2c",
"#800026", "#fff7bc", "#fec44f", "#d95f0e", "#a63603", "#74c476", "#238b45",
"#00441b", "#7fcdbb", "#084081", "#c6dbef", "#2b8cbe", "#016c59", "#bcbddc",
"#807dba", "#54278f", "#bdbdbd", "black", "white")) +
labs(x = "", y = "Relative abundance")
supergroup + phylum + patchwork::plot_layout(ncol = 1)
}
# make_bar_relabun(insitu_asv_wClass, axial)Relative abundance plots are misleading, as this tag-sequence data is compositional. To combat this, we can also perform a center log-ratio transformation of the sequence counts. This tile plot (or heat map) will show the relationship from the data mean. Positive values thus demonstrate an increase in the taxa, while negative values illustrate the opposite.
Ahead of the CLR transformation, average across replicates, then sum to the Class level. THEN perform CLR transformation and plot as heat map.
make_clr_trans_tile <- function(df, selection){
df_wide <- df %>%
filter(SITE %in% selection) %>%
# df_wide <- insitu_asv_wClass %>%
# filter(SITE %in% axial) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Domain, Supergroup, Phylum, Class, Order, Family, Genus, Species) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
# Sum to the Order taxonomic classification
unite(SAMPLENAME_2, SAMPLENAME, VENT, sep = "_") %>%
group_by(SAMPLENAME_2, Supergroup, Phylum, Class) %>%
summarise(CLASS_SUM = sum(AVG)) %>%
unite(CLASS, Supergroup, Phylum, Class, sep = " ") %>%
select(CLASS, SAMPLENAME_2, CLASS_SUM) %>%
pivot_wider(names_from = SAMPLENAME_2, values_from = CLASS_SUM, values_fill = 0) %>%
column_to_rownames(var = "CLASS")
## Take wide data frame and CLR transform, pivot to wide, and plot
data.frame(compositions::clr(df_wide)) %>%
rownames_to_column(var = "CLASS") %>%
pivot_longer(cols = starts_with(selection), values_to = "CLR", names_to = "SAMPLENAME_2") %>%
separate(SAMPLENAME_2, c("SAMPLENAME", "VENT"), sep = "_") %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(VENT = str_replace_all(VENT, "\\.", " ")) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
# SITE == "Piccard" ~ "Piccard",
# SITE == "VonDamm" ~ "Von Damm",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, REGION, VENTNAME, sep = " ", remove = FALSE) %>%
separate(CLASS, c("Supergroup", "Phylum", "Class"), sep = " ", remove = FALSE) %>%
ggplot(aes(x = SAMPLE, y = Class, fill = CLR)) +
geom_tile(color = "#252525") +
theme(legend.position = "right",
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
panel.border = element_blank(),
panel.background = element_blank(),
axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5, color = "black",size = 8),
axis.text.y = element_text(color = "black", size = 8),
strip.background = element_blank(),
strip.text.y = element_text(hjust = 0, vjust = 0.5, angle = 0),
# strip.text.x = element_blank(),
legend.title = element_blank()) +
labs(x = "", y = "") +
scale_fill_gradient2(low = "#4575b4", mid = "white", high = "#d73027", na.value = "grey50") +
facet_grid(Supergroup + Phylum ~ SAMPLETYPE, space = "free", scales = "free")
}Similar to aove, the first step in this function transforms data using CLR (to ASV level though). First plot will show eigen values (scree plot to determine if 2 vs. 3 dimensions is best for data). Then function extracts data points and creates PCA plot.
make_pca <- function(df, selection){
df_wide_asv <- df %>%
# df_wide_asv <- insitu_asv_wClass %>%
filter(SITE %in% selection) %>%
# filter(SITE %in% axial) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SAMPLETYPE, REGION, VENTNAME, sep = "_", remove = FALSE) %>%
group_by(FeatureID, SAMPLE) %>%
summarise(SUM = sum(AVG)) %>%
pivot_wider(names_from = FeatureID, values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "SAMPLE")
# look at eigenvalues
pca_lr <- prcomp(data.frame(compositions::clr(df_wide_asv)))
variance_lr <- (pca_lr$sdev^2)/sum(pca_lr$sdev^2)
## View bar plot
barplot(variance_lr, main = "Log-Ratio PCA Screeplot", xlab = "PC Axis", ylab = "% Variance",
cex.names = 1.5, cex.axis = 1.5, cex.lab = 1.5, cex.main = 1.5)
## Extract PCR points
data.frame(pca_lr$x, SAMPLE = rownames(pca_lr$x)) %>%
separate(SAMPLE, c("SAMPLETYPE", "REGION", "VENTNAME"), sep = "_", remove = FALSE) %>%
## Generate PCA plot
ggplot(aes(x = PC1, y = PC2, shape = SAMPLETYPE, fill = VENTNAME)) +
geom_hline(yintercept = 0) + geom_vline(xintercept = 0, color = "#525252") +
geom_point(size=4, stroke = 1, aes(fill = VENTNAME)) +
ylab(paste0('PC2 ',round(variance_lr[2]*100,2),'%')) +
xlab(paste0('PC1 ',round(variance_lr[1]*100,2),'%')) +
scale_shape_manual(values = c(21, 23, 24)) +
scale_fill_viridis(discrete = TRUE, option = "turbo") +
# scale_fill_manual(values = fill_color) +
# scale_color_manual(values = color_color) +
theme_bw() +
theme(axis.text = element_text(color="black", size=12),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 14),
plot.margin = margin(2, 1, 2, 1, "cm")) +
guides(fill = guide_legend(override.aes = list(shape = 21) ),
shape = guide_legend(override.aes = list(fill = "black")))
}From complete dataset, average across replicates, then sum the total number of ASVs in each sample. Then plot a data point for total number of ASVs (ASV richness) by sample type - where sample type represents the vent, plume, vs. background. Box plots show the median and range.
make_asv_rich <- function(df, selection){
df %>%
filter(SITE %in% selection) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, REGION, VENTNAME, sep = " ", remove = FALSE) %>%
ungroup() %>%
group_by(SITE, REGION, SAMPLE, SAMPLETYPE) %>%
summarise(NUM_ASV = n()) %>%
ggplot(aes(x = SAMPLETYPE, y = NUM_ASV, shape = SAMPLETYPE)) +
geom_boxplot(aes(group = SAMPLETYPE), alpha = 0.8, width = 0.4) +
geom_jitter(size=2, aes(fill = SITE)) +
scale_shape_manual(values = c(21, 23, 24)) +
theme_bw() +
theme(axis.text = element_text(color="black", size=12),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 14)) +
guides(fill = guide_legend(override.aes = list(shape = 21) ),
shape = guide_legend(override.aes = list(fill = "black") ) ) +
labs(x = "", y = "Total number of ASVs")
}Bar plot (colors correspond to Supergroup) represents the number of ASVs shared or unique to each sample. Combination matrix below bars shows which samples are considered for the bar plot.
make_upset_plot <- function(df, selection){
df %>%
filter(SITE %in% selection) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, VENTNAME, sep = " ", remove = FALSE) %>%
distinct(FeatureID, Supergroup, AVG, SAMPLE, .keep_all = TRUE) %>%
group_by(FeatureID, Supergroup) %>%
summarise(SAMPLE = list(SAMPLE)) %>%
ggplot(aes(x = SAMPLE)) +
geom_bar(color = "black", width = 0.5, aes(fill = Supergroup)) +
scale_x_upset(n_intersections = 35) +
scale_y_continuous(expand = c(0,0)) +
labs(x = "", y = "Shared ASVs") +
theme_linedraw() +
theme(axis.text = element_text(color="black", size=10),
axis.title = element_text(color="black", size=10),
legend.text = element_text(color = "black", size = 10),
plot.margin = margin(1, 1, 1, 5, "cm")) +
scale_fill_manual(values = c("#f1eef6", "#d7b5d8", "#df65b0", "#ce1256", "#fc9272", "#ef3b2c",
"#800026", "#fff7bc", "#fec44f", "#d95f0e", "#a63603", "#74c476", "#238b45",
"#00441b", "#7fcdbb", "#084081", "#c6dbef", "#2b8cbe", "#016c59", "#bcbddc",
"#807dba", "#54278f", "#bdbdbd", "black"))
}Isolate the top 15 taxa
# head(insitu_asv_wClass)
all_class <- as.character(unique(insitu_asv_wClass$CLASS))
all_class_site <- as.character(unique(insitu_asv_wClass$SITE_CLASS))
top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax){
level <- enquo(level)
class <- enquo(class)
plot_tax <- enquo(plot_tax)
all_class <- as.character(unique(insitu_asv_wClass$CLASS))
all_class_site <- as.character(unique(insitu_asv_wClass$SITE_CLASS))
out_table <- df %>%
# filter(SITE %in% site) %>%
filter(!!level == taxa) %>%
# filter(Domain %in% "Eukaryota") %>%
# filter(CLASS %in% all_class) %>%
filter(!!class %in% category) %>%
# Average across replicates
group_by(FeatureID, Taxon, Domain, Supergroup, Phylum, Class, Order, Family, Genus, Species,
VENT, SITE, SAMPLETYPE, YEAR, DATASET, !!class) %>%
summarise(SEQ_AVG_REP = mean(value)) %>%
ungroup() %>%
# Select top 15 ASVs
group_by(VENT, SITE, SAMPLETYPE, YEAR, DATASET) %>%
top_n(NUM, wt = SEQ_AVG_REP) %>%
unite(SAMPLENAME, SITE, SAMPLETYPE, VENT, YEAR, sep = " ", remove = FALSE)
#
plot <- ggplot(out_table, aes(x = SAMPLENAME, fill = !!plot_tax)) +
geom_bar(stat = "count", color = "black", width = 0.7) +
coord_flip() +
facet_grid(SAMPLETYPE + SITE ~ ., space = "free", scales = "free") +
theme_classic() +
scale_fill_viridis(discrete = TRUE, option = "turbo")
##
plotly::ggplotly(plot)
}
# Function usage:
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
# top15(insitu_asv_wClass, 10, all, Phylum, "Ciliophora", CLASS, all_class, Class)
# all_classmake_bar_relabun(insitu_asv_wClass, axial)Axial Seamount samples from archived material - span 2013, 2014, and 2015. First, the background and plume (from 2015 only, and from plume associated with the Anemone vent) are different from the vent samples - overwhelmingly stramneopile and rhizaria. For the background and plume, the stramenopiles appear to be associated with ochrophyta or opalozoa. For the plume, the rhizaria population was associated with cercozoa, while the background seawater was identified as belonging to radiolaria.
The major difference between the background/plume and vent sites was the higher relative sequence abundance of ciliates and opisthokonta. For the opisthokonta, these are primarily metazoa - and I will need to investigate this further. Exceptions for this include the ‘Dependable’ vent from 2013, which had a completely different composition, and ‘Marker 113’ in 2015, which the opisthokonta sequences were assigned choanoflagellate and fungi.
Further questions to consider
Any geochemical changes to Marker 113 from 2013/2014 to 2015? Could attribute difference of opisthokonta colonization.
make_clr_trans_tile(insitu_asv_wClass, axial)## Warning: Expected 4 pieces. Additional pieces discarded in 1872 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
Tile plot goes to the Class taxonomic level. Here at Axial, mostly the ciliate class had higher CLR values (more enriched relative to the data mean). Second to ciliates were cercozoa. Also noticing how Marker 113 2013 and 2015 are more similar to each other than 2014?
make_pca(insitu_asv_wClass, axial)## Warning: Expected 4 pieces. Additional pieces discarded in 7717 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
While we only have 1 plume and bsw each for Axial, they are grouping together - away from vents. So that is an expected signature and likely consistent with the other sites. These colors are a little confusing, it does look like Boca is an outlier.
make_asv_rich(insitu_asv_wClass, axial)## Warning: Expected 4 pieces. Additional pieces discarded in 7717 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
We only have 1 sample for background and plume from Axial Seamount. But this shows that the vent sites have varied ASV richness,
make_upset_plot(insitu_asv_wClass, axial)## Warning: Expected 4 pieces. Additional pieces discarded in 7717 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Removed 876 rows containing non-finite values (stat_count).
### Presence-absence at Axial - year and site
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
# svg("upsetR-bysite-sampletype-nov2.svg", h=9, w=15)
axial_loc_yr <- insitu_asv_wClass %>%
filter(SITE %in% axial) %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
# Taxa to supergroup
mutate(SupergroupPhylum = SUPERGROUP) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, SupergroupPhylum) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
filter(REGION == "Axial") %>%
unite(SAMPLE, SITE, SAMPLETYPE, sep = " ", remove = FALSE) %>%
unite(YR_LOC, SAMPLETYPE, YEAR, sep = " ", remove = FALSE) %>%
group_by(FeatureID, SupergroupPhylum, YR_LOC) %>%
summarise(SUM = sum(AVG)) %>%
# filter(SUM > 200) %>%
ungroup()## Warning: Expected 4 pieces. Additional pieces discarded in 6856 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
##
axial_loc_yr %>%
distinct(FeatureID, SupergroupPhylum, SUM, YR_LOC, .keep_all = TRUE) %>%
group_by(FeatureID, SupergroupPhylum) %>%
summarise(SAMPLE = list(YR_LOC)) %>%
ggplot(aes(x = SAMPLE)) +
geom_bar(color = "black", width = 0.5, aes(fill = SupergroupPhylum)) +
scale_x_upset(n_intersections = 25) +
scale_y_continuous(expand = c(0,0)) +
labs(x = "", y = "Shared ASVs") +
theme_linedraw() +
theme(axis.text.y = element_text(color="black", size=14),
axis.text.x = element_text(color="black", size=14),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 5, "cm")) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#deebf7", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525"))## Warning: Removed 13 rows containing non-finite values (stat_count).
# dev.off()Extract total number of ASVs from Axial data, and those that were found within the vent fluid only.
length(unique(axial_loc_yr$FeatureID))## [1] 3586
tmp <- axial_loc_yr %>%
filter(grepl("Vent", YR_LOC)) %>%
pivot_wider(names_from = YR_LOC, values_from = SUM, values_fill = NA) %>%
drop_na()
head(tmp) ## # A tibble: 6 × 5
## FeatureID SupergroupPhylum `Vent 2013` `Vent 2014` `Vent 2015`
## <chr> <chr> <dbl> <dbl> <dbl>
## 1 00b72d1a5fefb03bc39e… Alveolata-Ciliophora 11403 1817 721
## 2 01a71ee728b1597b04d3… Stramenopiles 368 51 224
## 3 04f5a1d4ab104eeb7457… Stramenopiles 273 120 200
## 4 05b6d079805b2bb389fe… Stramenopiles-Sagen… 133 50 10
## 5 068cf0d76352f3978c0e… Stramenopiles 988 40 172
## 6 06cb67e2036452e926aa… Alveolata-Dinoflage… 544 240 140
length(unique(tmp$FeatureID))## [1] 177
tmp %>%
pivot_longer(starts_with("Vent ")) %>%
group_by(name, SupergroupPhylum) %>%
summarise(VALUE = sum(value)) %>%
ggplot(aes(x = name, y = VALUE, fill = SupergroupPhylum)) +
geom_bar(stat = "identity")# Function usage:
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(insitu_asv_wClass, 15, axial, Domain, "Eukaryota", CLASS, all_class, Phylum)# unique(insitu_asv_wClass$CLASS)
vent_only <- c("Vent only")
# Isolate top 15 vent-only ASVs from axial - at the phylum level
top15(insitu_asv_wClass, 15, axial, Domain, "Eukaryota", CLASS, vent_only, Phylum)# Top 10 ciliate only taxa, as most were ciliates
top15(insitu_asv_wClass, 10, axial, Phylum, "Ciliophora", CLASS, vent_only, Class)make_bar_relabun(insitu_asv_wClass, mcr)make_clr_trans_tile(insitu_asv_wClass, mcr)## Warning: Expected 4 pieces. Additional pieces discarded in 1794 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
make_pca(insitu_asv_wClass, mcr)## Warning: Expected 4 pieces. Additional pieces discarded in 8327 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
make_asv_rich(insitu_asv_wClass, mcr)## Warning: Expected 4 pieces. Additional pieces discarded in 8327 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
make_upset_plot(insitu_asv_wClass, mcr)## Warning: Expected 4 pieces. Additional pieces discarded in 8327 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Removed 907 rows containing non-finite values (stat_count).
Repeat presence-absence plot, but with a lower resolution.
insitu_asv_wClass %>%
filter(SITE %in% mcr) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, SAMPLETYPE, sep = " ", remove = FALSE) %>%
group_by(FeatureID, Supergroup, SAMPLE) %>%
summarise(SUM = sum(AVG)) %>%
ungroup() %>%
distinct(FeatureID, Supergroup, SUM, SAMPLE, .keep_all = TRUE) %>%
group_by(FeatureID, Supergroup) %>%
summarise(SAMPLE = list(SAMPLE)) %>%
ggplot(aes(x = SAMPLE)) +
geom_bar(color = "black", width = 0.5, aes(fill = Supergroup)) +
scale_x_upset(n_intersections = 15) +
scale_y_continuous(expand = c(0,0)) +
labs(x = "", y = "Shared ASVs") +
theme_linedraw() +
theme(axis.text = element_text(color="black", size=10),
axis.title = element_text(color="black", size=10),
legend.text = element_text(color = "black", size = 10),
plot.margin = margin(1, 1, 1, 5, "cm")) +
scale_fill_manual(values = c("#f1eef6", "#d7b5d8", "#df65b0", "#ce1256", "#fc9272", "#ef3b2c",
"#800026", "#fff7bc", "#fec44f", "#d95f0e", "#a63603", "#74c476", "#238b45",
"#00441b", "#7fcdbb", "#084081", "#c6dbef", "#2b8cbe", "#016c59", "#bcbddc",
"#807dba", "#54278f", "#bdbdbd", "black"))## Warning: Expected 4 pieces. Additional pieces discarded in 8327 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Removed 331 rows containing non-finite values (stat_count).
# Function usage:
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(insitu_asv_wClass, 15, mcr, Domain, "Eukaryota", CLASS, all_class, Phylum)# unique(insitu_asv_wClass$CLASS)
vent_only <- c("Vent only")
# Isolate top 15 vent-only ASVs from MCR - at the phylum level
top15(insitu_asv_wClass, 15, mcr, Domain, "Eukaryota", CLASS, vent_only, Phylum)# Top 10 ciliate only taxa, as most were ciliates
top15(insitu_asv_wClass, 10, mcr, Phylum, "Ciliophora", CLASS, vent_only, Class)import_mcr <- read_delim(file = "../../Mid-Cayman_Rise/midcayman-rise-microeuk/table-wcalc.txt", delim = "\t")
# head(import_mcr)
# mcr_metadata <- import_mcr %>%
# select(GRAZING_EFFECT_hr)
# unite(type_site, "2020", _vent_, " ")# View(asv_insitu_qc)
# unique(tmp$SAMPLENAME)
plot_bubble <- function(VARIABLE){
asv_insitu_qc %>%
filter(SITE %in% mcr) %>%
filter(Domain == "Eukaryota") %>%
filter(value > 0) %>%
# Average across replicates
group_by(SAMPLENAME, VENT) %>%
summarise(SUM = sum(value),
ASV_COUNT = n_distinct(FeatureID),
TEMP_avg = mean(TEMP),
PROK_avg = mean(ProkConc)) %>%
ungroup() %>%
pivot_longer(cols = c(SUM, ASV_COUNT, TEMP_avg, PROK_avg)) %>%
filter(name == VARIABLE) %>%
ggplot(aes(x = SAMPLENAME, y = name, size = value)) +
geom_point(shape = 21, color = "black", aes(size = value)) +
scale_size_continuous(range = c(1,16)) +
theme_void() +
theme(axis.text.x = element_text(color = "black", angle = 45, hjust = 1, vjust = 1),
axis.text.y = element_text(color = "black"),
legend.title = element_blank())
}
# plot_grid(
# plot_bubble("ASV_COUNT") + theme(axis.text.x = element_blank()),
# plot_bubble("SUM") + theme(axis.text.x = element_blank()),
# plot_bubble("PROK_avg") + theme(axis.text.x = element_blank()),
# plot_bubble("TEMP_avg"),
# ncol = 1,
# align = c("hv"),
# axis = c("lrtb")
# )
plot_bubble("ASV_COUNT") + theme(axis.text.x = element_blank()) +
plot_bubble("SUM") + theme(axis.text.x = element_blank()) +
plot_bubble("PROK_avg") + theme(axis.text.x = element_blank()) +
plot_bubble("TEMP_avg") + patchwork::plot_layout(ncol = 1)## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(TEMP): argument is not numeric or logical: returning NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning in mean.default(ProkConc): argument is not numeric or logical: returning
## NA
## Warning: Removed 13 rows containing missing values (geom_point).
## Warning: Removed 13 rows containing missing values (geom_point).
# ?plot_grid()## Bar plot relative abundance: GR
make_bar_relabun(insitu_asv_wClass, gr)make_clr_trans_tile(insitu_asv_wClass, gr)## Warning: Expected 4 pieces. Additional pieces discarded in 2210 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
make_pca(insitu_asv_wClass, gr)## Warning: Expected 4 pieces. Additional pieces discarded in 9456 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
make_asv_rich(insitu_asv_wClass, gr)## Warning: Expected 4 pieces. Additional pieces discarded in 9456 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
make_upset_plot(insitu_asv_wClass, gr)## Warning: Expected 4 pieces. Additional pieces discarded in 9456 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Removed 926 rows containing non-finite values (stat_count).
# Function usage:
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(insitu_asv_wClass, 15, gr, Domain, "Eukaryota", CLASS, all_class, Phylum)# unique(insitu_asv_wClass$CLASS)
vent_only <- c("Vent only")
# Isolate top 15 vent-only ASVs from GR - at the phylum level
top15(insitu_asv_wClass, 15, gr, Domain, "Eukaryota", CLASS, vent_only, Phylum)# Top 10 ciliate only taxa, as most were ciliates
top15(insitu_asv_wClass, 10, gr, Phylum, "Ciliophora", CLASS, vent_only, Class)all <- c("Axial", "VonDamm", "Piccard", "GordaRidge")
mcr <- c("VonDamm", "Piccard")make_bar_relabun(insitu_asv_wClass, all) ### Tree map - simplier taxonomic composition
library(treemapify)
# unique(tmp$SUPERGROUP)Filter data to reduce noise and show sample type to vent ecosystem variability.
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
bkgd <- c("Deep seawater", "BSW", "Shallow seawater")
plume <- c("Candelabra Plume", "Mt Edwards Plume", "Plume", "Near vent BW")
to_supergroup <- insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
mutate(SAMPLETYPEORDER = case_when(
VENT %in% bkgd ~ "Background",
VENT %in% plume ~ "Plume",
TRUE ~ "Vent"
)) %>%
group_by(FeatureID, Taxon, SUPERGROUP,
VENT, SITE, SAMPLETYPE, YEAR, DATASET, SAMPLETYPEORDER) %>%
summarise(SEQ_AVG_REP = mean(value)) %>%
ungroup() %>%
group_by(SITE, SUPERGROUP, SAMPLETYPEORDER) %>%
summarise(ASV_COUNT = n(),
SEQ_SUM = sum(SEQ_AVG_REP))
# Order sample type
to_supergroup$SAMPLETYPEORDER <- factor(to_supergroup$SAMPLETYPEORDER, levels = c("Background", "Plume", "Vent"))
# View(to_supergroup)
# Remove ASVs with fewer than 200 sequences
to_supergroup %>%
filter(SEQ_SUM > 200) %>%
ggplot(aes(area = SEQ_SUM, fill = SUPERGROUP, subgroup = SUPERGROUP)) +
geom_treemap(color = "white") +
geom_treemap_subgroup_border(colour = "white", size = 2) +
# geom_bar(stat = "identity", position = "fill", color = "black", width = 0.9) +
facet_grid(SITE ~ SAMPLETYPEORDER) +
theme_linedraw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
strip.background = element_blank(), strip.text = element_text(color = "black"),
legend.position = "right",
legend.title = element_blank(),
panel.border = element_blank()) +
scale_y_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
labs(x = "", y = "Sequence proportion by Supergroup")# head(to_supergroup)
totalsum_supergroup <- sum(to_supergroup$SEQ_SUM)
table_perc_supergroup <- to_supergroup %>%
group_by(SITE) %>%
mutate(SUM_SITE = sum(SEQ_SUM)) %>%
ungroup() %>%
group_by(SITE, SAMPLETYPEORDER) %>%
mutate(SUM_SITE_TYPE = sum(SEQ_SUM)) %>%
ungroup() %>%
mutate(Perc_seq_total = (100*(SEQ_SUM/totalsum_supergroup)),
Perc_seq_site = (100*(SEQ_SUM/SUM_SITE)),
Perc_seq_site_type = (100*(SEQ_SUM/SUM_SITE_TYPE))) %>%
select(-starts_with("SUM_")) %>%
gt(
groupname_col = c("SITE", "SAMPLETYPEORDER")
# rowname_col = "SAMPLENAME"
) %>%
fmt_number(columns = starts_with("Perc_"), decimals = 2) %>%
fmt_number(columns = SEQ_SUM, decimals = 0) %>%
fmt_number(columns = ASV_COUNT, decimals = 0)A better approach down below after isolating the vent-only ASVs.
# make_clr_trans_tile(insitu_asv_wClass, all)make_pca(insitu_asv_wClass, all)## Warning: Expected 4 pieces. Additional pieces discarded in 25500 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
Repeat, but color by Region and sample type.
df_wide_asv <- insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SAMPLETYPE, SITE, VENTNAME, sep = "_", remove = FALSE) %>%
group_by(FeatureID, SAMPLE) %>%
summarise(SUM = sum(AVG)) %>%
pivot_wider(names_from = FeatureID, values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "SAMPLE")## Warning: Expected 4 pieces. Additional pieces discarded in 25500 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# look at eigenvalues
pca_lr <- prcomp(data.frame(compositions::clr(df_wide_asv)))
variance_lr <- (pca_lr$sdev^2)/sum(pca_lr$sdev^2)
## View bar plot
barplot(variance_lr, main = "Log-Ratio PCA Screeplot", xlab = "PC Axis", ylab = "% Variance",
cex.names = 1.5, cex.axis = 1.5, cex.lab = 1.5, cex.main = 1.5) ## Extract PCR points
data.frame(pca_lr$x, SAMPLE = rownames(pca_lr$x)) %>%
separate(SAMPLE, c("SAMPLETYPE", "REGION", "VENTNAME"), sep = "_", remove = FALSE) %>%
## Generate PCA plot
ggplot(aes(x = PC1, y = PC2, shape = SAMPLETYPE, fill = REGION)) +
geom_hline(yintercept = 0) + geom_vline(xintercept = 0, color = "#525252") +
geom_point(size=3, stroke = 1, aes(fill = REGION)) +
ylab(paste0('PC2 ',round(variance_lr[2]*100,2),'%')) +
xlab(paste0('PC1 ',round(variance_lr[1]*100,2),'%')) +
scale_shape_manual(values = c(21, 23, 24)) +
scale_fill_manual(values = c("#fdbb84", "#31a354", "#ef3b2c", "#02818a")) +
theme_bw() +
theme(axis.text = element_text(color="black", size=12),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 14),
plot.margin = margin(2, 1, 2, 1, "cm")) +
guides(fill = guide_legend(override.aes = list(shape = 21) ),
shape = guide_legend(override.aes = list(fill = "black")))Modify sample names for dendrogram plot.
df <- as.data.frame(t(df_wide_asv))
###
colnames(df) <- gsub(x = names(df), pattern = "_", replacement = " ")
colnames(df) <- gsub(x = names(df), pattern = "Vent Axial", replacement = "Axial")
colnames(df) <- gsub(x = names(df), pattern = "Vent GordaRidge", replacement = "Gorda Ridge")
colnames(df) <- gsub(x = names(df), pattern = "GordaRidge", replacement = "Gorda Ridge")
colnames(df) <- gsub(x = names(df), pattern = "Plume ", replacement = "")
colnames(df) <- gsub(x = names(df), pattern = "Vent VonDamm VonDamm", replacement = "Von Damm")
colnames(df) <- gsub(x = names(df), pattern = "Vent Piccard Piccard", replacement = "Piccard")
colnames(df) <- gsub(x = names(df), pattern = "Background GordaRidge", replacement = "Gorda Ridge")
colnames(df) <- gsub(x = names(df), pattern = "VonDamm VonDamm", replacement = "Von Damm")
colnames(df) <- gsub(x = names(df), pattern = "Piccard Piccard", replacement = "Piccard")
colnames(df) <- gsub(x = names(df), pattern = " BSW", replacement = "")
colnames(df) <- gsub(x = names(df), pattern = "Background Axial Deep seawater 2015", replacement = "Background Axial 2015")
# Write over same data frame - fix sample names
dendro_input <- df
# head(dendro_input)Estimate Jaccard distance
# ?vegan::decostand
# ?vegdist
dendro_jacc <- vegan::vegdist(t(dendro_input), method = "jaccard")
# head(dendro_jacc)
cluster_jacc <- hclust(dist(t(dendro_jacc)), method = "average")
library(ggdendro)
dendro_plot_df <- ggdendro::dendro_data(as.dendrogram(cluster_jacc), type = "rectangle")
label_dendro_order <- as.character(dendro_plot_df$labels$label)
# label_dendro_orderPlot dendrogram
dendro_plot_output <- ggplot(segment(dendro_plot_df)) +
geom_segment(aes(x = x, y = y, xend = xend, yend = yend)) +
coord_flip() +
scale_y_reverse(expand = c(0.2, 0.5), breaks = c(0, 0.2, 0.4, 0.6, 0.8)) +
geom_text(aes(x = x, y = y, label = label, angle = 0, hjust = 0), data = label(dendro_plot_df)) +
theme_dendro() +
labs(y = "Dissimilarity", title = "Jaccard distance") +
theme(axis.text.x = element_text(color = "black", size = 14),
axis.line.x = element_line(color = "#252525"),
axis.ticks.x = element_line(), axis.title.x = element_text(color = "black", size = 14))Add bar plot in the same order to show proportion of resident versus cosmpolitan ASVs in each sample.
# head(insitu_asv_wClass)
# unique(insitu_asv_wClass$SITE_CLASS)
# unique(insitu_asv_wClass$CLASS)
dendro_bar <- insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, SITE_CLASS) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SAMPLETYPE, SITE, VENTNAME, sep = "_", remove = FALSE) %>%
mutate(SITE_CLASS_2 = case_when(
SITE_CLASS == "Piccard & Von Damm" ~ "Piccard & Von Damm only",
SITE_CLASS == "Piccard & Axial" ~ "MCR & Axial",
SITE_CLASS == "Piccard & Gorda Ridge" ~ "MCR & Gorda Ridge",
SITE_CLASS == "Von Damm & Axial" ~ "MCR & Axial",
SITE_CLASS == "Von Damm & Gorda Ridge" ~ "MCR & Gorda Ridge",
SITE_CLASS == "Piccard, Axial, & Gorda Ridge" ~ "MCR, Axial, & Gorda Ridge",
SITE_CLASS == "Von Damm, Axial, & Gorda Ridge" ~ "MCR, Axial, & Gorda Ridge",
TRUE ~ SITE_CLASS
)) %>%
group_by(SITE_CLASS_2, SAMPLE) %>%
summarise(SEQ_SUM = sum(AVG),
ASV_COUNT = n()) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "_", replacement = " ")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent Axial", replacement = "Axial")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent GordaRidge", replacement = "Gorda Ridge")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "GordaRidge", replacement = "Gorda Ridge")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Plume ", replacement = "")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent VonDamm VonDamm", replacement = "Von Damm")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent Piccard Piccard", replacement = "Piccard")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Background GordaRidge", replacement = "Gorda Ridge")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "VonDamm VonDamm", replacement = "Von Damm")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Piccard Piccard", replacement = "Piccard")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = " BSW", replacement = "")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Background Axial Deep seawater 2015", replacement = "Background Axial 2015")) ## Warning: Expected 4 pieces. Additional pieces discarded in 25500 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# unique(insitu_asv_wClass$CLASS)
cosmo <- c("Vent, plume, & background", "Vent & background", "Vent & plume", "Plume & background")
dendro_res_cos_df <- insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
mutate(DISTRIBUTION = case_when(
CLASS %in% cosmo ~ "Cosmopolitan",
TRUE ~ CLASS
)) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, DISTRIBUTION) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SAMPLETYPE, SITE, VENTNAME, sep = "_", remove = FALSE) %>%
group_by(DISTRIBUTION, SAMPLE) %>%
summarise(SEQ_SUM = sum(AVG),
ASV_COUNT = n()) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "_", replacement = " ")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent Axial", replacement = "Axial")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent GordaRidge", replacement = "Gorda Ridge")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "GordaRidge", replacement = "Gorda Ridge")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Plume ", replacement = "")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent VonDamm VonDamm", replacement = "Von Damm")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Vent Piccard Piccard", replacement = "Piccard")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Background GordaRidge", replacement = "Gorda Ridge")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "VonDamm VonDamm", replacement = "Von Damm")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Piccard Piccard", replacement = "Piccard")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = " BSW", replacement = "")) %>%
mutate(SAMPLE = gsub(SAMPLE, pattern = "Background Axial Deep seawater 2015", replacement = "Background Axial 2015")) ## Warning: Expected 4 pieces. Additional pieces discarded in 25500 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
dendro_bar$SAMPLE_ORDER <- factor(dendro_bar$SAMPLE, levels = label_dendro_order)
dendro_res_cos_df$SAMPLE_ORDER <- factor(dendro_res_cos_df$SAMPLE, levels = label_dendro_order)
# dendro_bar$SITE_CLASS_ORDER <- factor(dendro_bar$SITE_CLASS, levels = c("All sites","Von Damm only","Piccard only","Piccard & Von Damm","MCR & Axial","MCR & Gorda Ridge","Piccard & Axial","Piccard & Gorda Ridge","Piccard, Axial, & Gorda Ridge","Von Damm & Axial","Von Damm & Gorda Ridge","Von Damm, Axial, & Gorda Ridge","Gorda Ridge only","Axial only","Axial & Gorda Ridge"))
dendro_bar$SITE_CLASS_ORDER <- factor(dendro_bar$SITE_CLASS_2, levels = c("All sites","Von Damm only","Piccard only","Piccard & Von Damm only","MCR & Axial","MCR & Gorda Ridge", "MCR, Axial, & Gorda Ridge", "Gorda Ridge only","Axial only","Axial & Gorda Ridge"))
# unique(dendro_bar$SITE_CLASS)dendro_bar_plot <- ggplot(dendro_bar, aes(x = SAMPLE_ORDER, y = ASV_COUNT, fill = SITE_CLASS_ORDER)) +
geom_bar(stat = "identity", position = "fill", color = "black", width = 0.7, alpha = 0.8) +
coord_flip() +
scale_y_continuous(expand = c(0,0)) +
# scale_fill_manual(values = c("grey", "#e6550d", "#fdbb84", "#31a354", "#1c9099", "#fde0dd", "#c51b8a")) +
scale_fill_manual(values = c("#636363","#bd0026","#fed976","#fd8d3c","#a63603","#fdae6b","#c994c7","#00441b","#ce1256","#addd8e","#f7fcb9","#016c59","#41ab5d","#6a51a3","#3690c0")) +
theme_bw() +
theme(axis.text = element_text(color="black", size=5),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 1, "cm"),
legend.position = "top") +
labs(x = "", y = "Proportion of ASVs")
dendro_bar_plot_res_cos <- ggplot(dendro_res_cos_df, aes(x = SAMPLE_ORDER, y = ASV_COUNT, fill = DISTRIBUTION)) +
geom_bar(stat = "identity", position = "fill", color = "black", width = 0.7, alpha = 0.8) +
coord_flip() +
scale_y_continuous(expand = c(0,0)) +
viridis::scale_fill_viridis(discrete=TRUE, option = "H") +
theme_bw() +
theme(axis.text = element_text(color="black", size=5),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 1, "cm"),
legend.position = "top") +
labs(x = "", y = "Proportion of ASVs")
# dendro_bar_plot_res_cos
# ?scale_fill_viridis
dendro_bar_plot_SEQ <- ggplot(dendro_bar, aes(x = SAMPLE_ORDER, y = SEQ_SUM, fill = SITE_CLASS_ORDER)) +
geom_bar(stat = "identity", position = "fill", color = "black", width = 0.7, alpha = 0.8) +
coord_flip() +
scale_y_continuous(expand = c(0,0)) +
# scale_fill_manual(values = c("grey", "#e6550d", "#fdbb84", "#31a354", "#1c9099", "#fde0dd", "#c51b8a")) +
scale_fill_manual(values = c("#636363","#bd0026","#fed976","#fd8d3c","#a63603","#fdae6b","#c994c7","#00441b","#ce1256","#addd8e","#f7fcb9","#016c59","#41ab5d","#6a51a3","#3690c0")) +
theme_bw() +
theme(axis.text = element_text(color="black", size=5),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 1, "cm"),
legend.position = "top") +
labs(x = "", y = "Proportion of sequences")
dendro_bar_plot_res_cos_SEQ <- ggplot(dendro_res_cos_df, aes(x = SAMPLE_ORDER, y = SEQ_SUM, fill = DISTRIBUTION)) +
geom_bar(stat = "identity", position = "fill", color = "black", width = 0.7, alpha = 0.8) +
coord_flip() +
scale_y_continuous(expand = c(0,0)) +
viridis::scale_fill_viridis(discrete=TRUE, option = "H") +
theme_bw() +
theme(axis.text = element_text(color="black", size=5),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 1, "cm"),
legend.position = "t∂p") +
labs(x = "", y = "Proportion of sequences")
# dendro_bar_plotCombine all plots with patchwork.
# library(patchwork)
# svg("dendrogram_wbarplots.svg", w = 18, h = 12)
dendro_plot_output + dendro_bar_plot + dendro_bar_plot_res_cos + patchwork::plot_layout(nrow = 1, widths = c(1, 0.2, 0.2),
heights = c(1.5, 0.2, 0.2)) + plot_annotation(tag_levels = "a")# dev.off()
# ?plot_layout
# ?plot_annotationCreate the same plot, but by sequence proportion.
# svg("dendrogram_wbarplots.svg", w = 18, h = 12)
dendro_plot_output + dendro_bar_plot_SEQ + dendro_bar_plot_res_cos_SEQ + patchwork::plot_layout(nrow = 1, widths = c(1, 0.2, 0.2),
heights = c(1.5, 0.2, 0.2)) + plot_annotation(tag_levels = "a")# dev.off()# make_asv_rich(insitu_asv_wClass, all)ASV richness with customized color schema
insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, REGION, VENTNAME, sep = " ", remove = FALSE) %>%
ungroup() %>%
group_by(SITE, REGION, SAMPLE, SAMPLETYPE) %>%
summarise(NUM_ASV = n()) %>%
ggplot(aes(x = SAMPLETYPE, y = NUM_ASV, shape = SAMPLETYPE)) +
geom_boxplot(aes(group = SAMPLETYPE), alpha = 0.8, width = 0.4) +
geom_jitter(size=2, width = 0.3, aes(fill = SITE)) +
scale_shape_manual(values = c(21, 23, 24)) +
scale_fill_manual(values = c("#fdbb84", "#31a354", "#ef3b2c", "#02818a")) +
theme_bw() +
theme(axis.text = element_text(color="black", size=12),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 14)) +
guides(fill = guide_legend(override.aes = list(shape = 21) ),
shape = guide_legend(override.aes = list(fill = NA) ) ) +
labs(x = "", y = "Total number of ASVs")## Warning: Expected 4 pieces. Additional pieces discarded in 25500 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, REGION, VENTNAME, sep = " ", remove = FALSE) %>%
ungroup() %>%
group_by(SITE, REGION, SAMPLE, SAMPLETYPE, Supergroup) %>%
summarise(NUM_ASV = n()) %>%
ggplot(aes(x = SAMPLETYPE, y = NUM_ASV, shape = SAMPLETYPE)) +
geom_boxplot(aes(group = SAMPLETYPE), alpha = 0.8, width = 0.4) +
geom_jitter(size=2, width = 0.3, aes(fill = Supergroup)) +
facet_wrap(.~ Supergroup, scales = "free_y") +
scale_shape_manual(values = c(21, 23, 24)) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
theme_bw() +
theme(axis.text = element_text(color="black", size=12),
legend.title = element_blank(),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 14)) +
guides(fill = guide_legend(override.aes = list(shape = 21) ),
shape = guide_legend(override.aes = list(fill = NA) ) ) +
labs(x = "", y = "Total number of ASVs")## Warning: Expected 4 pieces. Additional pieces discarded in 25500 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# make_upset_plot(insitu_asv_wClass, all)
# head(insitu_asv_wClass)Repeat above plot, but resolve by sample location and sample type.
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
# svg("upsetR-bysite-sampletype-nov2.svg", h=9, w=15)
insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
# Taxa to supergroup
mutate(SupergroupPhylum = SUPERGROUP) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, SupergroupPhylum) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, SAMPLETYPE, sep = " ", remove = FALSE) %>%
group_by(FeatureID, SupergroupPhylum, SAMPLE) %>%
summarise(SUM = sum(AVG)) %>%
# filter(SUM > 200) %>%
ungroup() %>%
distinct(FeatureID, SupergroupPhylum, SUM, SAMPLE, .keep_all = TRUE) %>%
group_by(FeatureID, SupergroupPhylum) %>%
summarise(SAMPLE = list(SAMPLE)) %>%
ggplot(aes(x = SAMPLE)) +
geom_bar(color = "black", width = 0.5, aes(fill = SupergroupPhylum)) +
scale_x_upset(n_intersections = 25) +
scale_y_continuous(expand = c(0,0)) +
labs(x = "", y = "Shared ASVs") +
theme_linedraw() +
theme(axis.text.y = element_text(color="black", size=14),
axis.text.x = element_text(color="black", size=14),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 5, "cm")) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#deebf7", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525"))## Warning: Expected 4 pieces. Additional pieces discarded in 23244 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Removed 1425 rows containing non-finite values (stat_count).
# dev.off()Observations regarding above plot: - Axial and Gorda Ridge vent sites have more shared ASVs than any other pairwise comparison. After this, there were also many ASVs shared throughout MCR (vent, plume, + background). May be a reflection of sample size, as MCR had more vent sites - a small subset of ASVs were found at all vent sites or all samples. - ASVs within the vents had much higher unique # of ASVs (not shared with another habitat type) than any other sample type/location (furtherest left bars).
Repeat upsetR plot, but summarize at genus level, rather than “species” or “strain”
head(insitu_asv_wClass)## # A tibble: 6 × 34
## FeatureID SAMPLE value Taxon Domain Supergroup Phylum Class Order Family Genus
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 00056209… Gorda… 8 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 2 00056209… Gorda… 13 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 3 00096455… Gorda… 91 Euka… Eukar… Rhizaria Radio… Acan… <NA> <NA> <NA>
## 4 000ee377… Axial… 282 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 5 000ee377… Axial… 32 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 6 00165708… Gorda… 1 Euka… Eukar… Stramenop… Ochro… Pela… Pela… Pelag… Pela…
## # … with 23 more variables: Species <chr>, Consensus <dbl>, SAMPLENAME <chr>,
## # VENT <chr>, COORDINATES <chr>, SITE <chr>, SAMPLEID <chr>, DEPTH <chr>,
## # SAMPLETYPE <chr>, YEAR <chr>, TEMP <chr>, pH <chr>, PercSeawater <chr>,
## # Mg <chr>, H2 <chr>, H2S <chr>, CH4 <chr>, ProkConc <chr>,
## # Sample_or_Control <chr>, DATASET <chr>, DECONTAM <chr>, CLASS <chr>,
## # SITE_CLASS <chr>
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
# svg("upsetR-bysite-sampletype-nov2.svg", h=9, w=15)
insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
# Taxa to supergroup
mutate(SupergroupPhylum = SUPERGROUP) %>%
unite(GENUS, Domain:Genus, sep = ";") %>%
# Average across replicates
group_by(GENUS, SAMPLENAME, VENT, SupergroupPhylum) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, SAMPLETYPE, sep = " ", remove = FALSE) %>%
group_by(GENUS, SupergroupPhylum, SAMPLE) %>%
summarise(SUM = sum(AVG)) %>%
# filter(SUM > 200) %>%
ungroup() %>%
distinct(GENUS, SupergroupPhylum, SUM, SAMPLE, .keep_all = TRUE) %>%
group_by(GENUS, SupergroupPhylum) %>%
summarise(SAMPLE = list(SAMPLE)) %>%
ggplot(aes(x = SAMPLE)) +
geom_bar(color = "black", width = 0.5, aes(fill = SupergroupPhylum)) +
scale_x_upset(n_intersections = 25) +
scale_y_continuous(expand = c(0,0)) +
labs(x = "", y = "Shared at Genus level") +
theme_linedraw() +
theme(axis.text.y = element_text(color="black", size=14),
axis.text.x = element_text(color="black", size=14),
axis.title = element_text(color="black", size=14),
legend.text = element_text(color = "black", size = 12),
plot.margin = margin(1, 1, 1, 5, "cm")) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#deebf7", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525"))## Warning: Expected 4 pieces. Additional pieces discarded in 8229 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Removed 316 rows containing non-finite values (stat_count).
Isolate list of genus level that are shared at all sites.
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
# svg("upsetR-bysite-sampletype-nov2.svg", h=9, w=15)
shared_genus <- insitu_asv_wClass %>%
filter(SITE %in% all) %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
# Taxa to supergroup
mutate(SupergroupPhylum = SUPERGROUP) %>%
unite(GENUS, Domain:Genus, sep = ";") %>%
# Average across replicates
group_by(GENUS, SAMPLENAME, VENT, SupergroupPhylum) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, SAMPLETYPE, sep = " ", remove = FALSE) %>%
select(GENUS, SAMPLE, AVG) %>%
pivot_wider(names_from = SAMPLE, values_from = "AVG", values_fn = sum) %>%
drop_na()## Warning: Expected 4 pieces. Additional pieces discarded in 8229 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# head(shared_genus)head(insitu_asv_wClass)## # A tibble: 6 × 34
## FeatureID SAMPLE value Taxon Domain Supergroup Phylum Class Order Family Genus
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 00056209… Gorda… 8 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 2 00056209… Gorda… 13 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 3 00096455… Gorda… 91 Euka… Eukar… Rhizaria Radio… Acan… <NA> <NA> <NA>
## 4 000ee377… Axial… 282 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 5 000ee377… Axial… 32 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 6 00165708… Gorda… 1 Euka… Eukar… Stramenop… Ochro… Pela… Pela… Pelag… Pela…
## # … with 23 more variables: Species <chr>, Consensus <dbl>, SAMPLENAME <chr>,
## # VENT <chr>, COORDINATES <chr>, SITE <chr>, SAMPLEID <chr>, DEPTH <chr>,
## # SAMPLETYPE <chr>, YEAR <chr>, TEMP <chr>, pH <chr>, PercSeawater <chr>,
## # Mg <chr>, H2 <chr>, H2S <chr>, CH4 <chr>, ProkConc <chr>,
## # Sample_or_Control <chr>, DATASET <chr>, DECONTAM <chr>, CLASS <chr>,
## # SITE_CLASS <chr>
gr_axial_shared <- insitu_asv_wClass %>%
filter(SITE_CLASS == "Axial & Gorda Ridge") %>%
filter(CLASS == "Vent only") %>%
mutate(OCEAN = "Found throughout NE Pacific vents")
length(unique(gr_axial_shared$FeatureID)) ## [1] 330
Extract coordinates from Gorda Ridge and Axial Seamount, calculate distance between each vent site.
library(geosphere)
axial_vents <- insitu_asv_wClass %>%
filter(SAMPLETYPE == "Vent") %>%
filter(SITE == "Axial")
gr_vents <- insitu_asv_wClass %>%
filter(SAMPLETYPE == "Vent") %>%
filter(SITE == "GordaRidge")
est_distances_gr_axial <- function(df){
df_out <- df %>%
select(VENT, COORDINATES) %>%
separate(COORDINATES, into = c("lat", "N", "long", "W"), sep = " ") %>%
mutate(
LONG_EW = as.numeric(formatC(as.numeric(long), digits = 4, format = "f")),
LAT = as.numeric(formatC(as.numeric(lat), digits = 4, format = "f")),
) %>%
mutate(LONG = case_when(
W == "W" ~ (LONG_EW*-1),
W == "E" ~ LONG_EW,
W == "" ~ (LONG_EW*-1)
)) %>%
select(-lat, -N, -long, -W, -LONG_EW) %>%
relocate(LONG) %>%
distinct(VENT, .keep_all = TRUE) %>%
column_to_rownames(var = "VENT")
vents <- row.names(df_out)
distance_m <- as.data.frame(distm(df_out, fun = distHaversine))
colnames(distance_m) <- vents
row.names(distance_m) <- vents
# Create matrix with distance in meters
dist_m <- distance_m %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
filter(!(start == end))
# create wide format
df_out_wide <- df %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
# REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
REGION == "Axial" ~ VENT
)) %>% select(-Sample_tmp) %>%
# unite(VENTNAME, sep = "_", remove = FALSE) %>%
group_by(FeatureID, VENT) %>%
summarise(SUM = sum(AVG)) %>%
pivot_wider(names_from = FeatureID, values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "VENT")
# Assign row names and calc distance metric
vents <- row.names(df_out_wide)
dist_bray <- as.data.frame(as.matrix(vegdist(df_out_wide, method = "bray"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Bray_Curtis_metric = value)
dist_jacc <- as.data.frame(as.matrix(vegdist(df_out_wide, method = "jaccard"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Jaccard_metric = value)
dist_jacc_clr <- as.data.frame(as.matrix(vegdist(compositions::clr(df_out_wide), method = "euclidean"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Jaccard_CLR_metric = value)
dist_ilr_euc <- as.data.frame(as.matrix(dist(compositions::ilr(df_out_wide), method = "euclidean"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Euclidean_ILR_metric = value)
# Combine all distance outputs - use dist_m
dist_compiled_output <- dist_m %>%
select(start, end, meters = value) %>%
left_join(dist_jacc_clr) %>%
left_join(dist_bray) %>%
left_join(dist_jacc) %>%
left_join(dist_ilr_euc) %>%
pivot_longer(cols = ends_with("_metric"), names_to = "comm_dist") %>%
filter(!(start == end))
}Estimate distance matrix among Gorda Ridge and Axial Seamount samples - compare with geographic distance. For simplifying this, Axial seamount samples have been combined.
axial_dist <- est_distances_gr_axial(axial_vents)## Warning: Expected 4 pieces. Additional pieces discarded in 6824 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
gr_dist <- est_distances_gr_axial(gr_vents)## Warning: Expected 4 pieces. Additional pieces discarded in 6615 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
Compile distances in meters and as distance estimate.
ggplot(axial_dist, aes(x = meters, y = value)) +
geom_jitter(stat = "identity") +
facet_grid(comm_dist ~ ., scales = "free") +
geom_smooth(method="lm") +
labs(title = "Axial Seamount", x = "Distance (m)", y = "Metric") +
theme_linedraw() +
ggplot(gr_dist, aes(x = meters, y = value)) +
geom_jitter(stat = "identity") +
facet_grid(comm_dist ~ ., scales = "free") +
geom_smooth(method="lm") +
labs(title = "Gorda Ridge", x = "Distance (m)", y = "Metric") +
scale_x_log10() + theme_linedraw() +
patchwork::plot_layout(ncol = 2)Look at most highly represented ASVs within the shared GR-Axial part of the community.
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
# top15(insitu_asv_wClass, 10, all, Phylum, "Ciliophora", CLASS, all_class, Class)
# length(unique(gr_axial_shared$Phylum))
# phylums <- as.character(unique(gr_axial_shared$Phylum))
# top15(gr_axial_shared, 10, all, Phylum, phylums, CLASS, all_class, Class)
# View(gr_axial_shared %>%
# group_by(Supergroup, Phylum, Class, Order, Family, Genus) %>%
# summarise(SUM = sum(value)) %>%
# ungroup() %>%
# group_by(Supergroup) %>%
# top_n(5, wt = SUM))tmp2 <- gr_axial_shared %>%
filter(value > 25)
hist(tmp2$value)length(unique(tmp2$FeatureID))## [1] 237
more_than_25 <- as.character(unique(tmp2$FeatureID))# head(gr_axial_shared)
gr_axial_shared %>%
filter(FeatureID %in% more_than_25) %>%
filter(!is.na(Phylum)) %>%
filter(!(Phylum == "Metazoa")) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
# REGION == "Axial" ~ VENT
)) %>% select(-Sample_tmp) %>%
group_by(SITE, YEAR, VENTNAME, FeatureID, Taxon, Domain, Supergroup, Phylum, Class) %>%
summarise(SUM = sum(value)) %>%
ungroup() %>%
mutate(BIN = ifelse(SUM > 0, 1, NA)) %>%
# pivot_wider(names_from = SAMPLENAME, values_from = BIN) %>%
ggplot(aes(x = VENTNAME, y = FeatureID, fill = BIN)) +
geom_tile(fill = "grey", color = "black") +
theme_minimal() +
facet_grid(Phylum ~ SITE + YEAR, space = "free", scales = "free") +
theme(axis.text.y = element_blank(),
axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5),
strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5))## Warning: Expected 4 pieces. Additional pieces discarded in 871 rows [1, 2, 3, 4,
## 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# ?ifelse()Characterize putative endemic ASVs within MCR only.
unique(insitu_asv_wClass$SITE_CLASS)## [1] "Gorda Ridge only" "Axial only"
## [3] "Von Damm only" "Piccard & Von Damm"
## [5] "Piccard only" "MCR & Axial"
## [7] "Axial & Gorda Ridge" "Von Damm & Gorda Ridge"
## [9] "Von Damm, Axial, & Gorda Ridge" "Von Damm & Axial"
## [11] "All sites" "MCR & Gorda Ridge"
## [13] "Piccard, Axial, & Gorda Ridge" "Piccard & Gorda Ridge"
## [15] "Piccard & Axial"
vd_picc_shared <- insitu_asv_wClass %>%
filter(SITE_CLASS == "Piccard & Von Damm") %>%
filter(CLASS == "Vent only") %>%
mutate(OCEAN = "Found throughout MCR vents")
length(unique(vd_picc_shared$FeatureID))## [1] 235
table(vd_picc_shared$Supergroup)##
## Alveolata Amoebozoa Archaea_X Archaeplastida Hacrobia
## 171 2 5 14 243
## Opisthokonta Rhizaria Stramenopiles
## 44 41 296
table(gr_axial_shared$Supergroup)##
## Alveolata Amoebozoa Apusozoa Archaeplastida Excavata
## 319 27 34 4 19
## Hacrobia Opisthokonta Rhizaria Stramenopiles
## 67 327 223 261
Isolate samples from Von Damm and Piccard vent sites only.
vd_picc_vents <- insitu_asv_wClass %>%
filter(SAMPLETYPE == "Vent") %>%
filter(SITE == "VonDamm" | SITE == "Piccard") %>%
mutate(coord = case_when(
VENT == "ShrimpHole" ~ "18.374893, -81.797441",
TRUE ~ COORDINATES
)) %>%
select(-COORDINATES) %>%
select(everything(), COORDINATES = coord)
# View(vd_picc_vents)
picc_vents <- insitu_asv_wClass %>%
filter(SAMPLETYPE == "Vent") %>%
filter(SITE == "Piccard")
vd_vents <- insitu_asv_wClass %>%
filter(SAMPLETYPE == "Vent") %>%
filter(SITE == "VonDamm") %>%
mutate(coord = case_when(
VENT == "ShrimpHole" ~ "18.374893, -81.797441",
TRUE ~ COORDINATES
)) %>%
select(-COORDINATES) %>%
select(everything(), COORDINATES = coord)
est_distances_mcr <- function(df){
df_out <- df %>%
select(VENT, COORDINATES) %>%
separate(COORDINATES, into = c("lat", "long"), sep = ", ", convert = TRUE) %>%
distinct(VENT, .keep_all = TRUE) %>%
relocate(LONG = long, LAT = lat) %>%
column_to_rownames(var = "VENT")
vents <- row.names(df_out)
distance_m <- as.data.frame(distm(df_out, fun = distHaversine))
colnames(distance_m) <- vents
row.names(distance_m) <- vents
# Create matrix with distance in meters
dist_m <- distance_m %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
filter(!(start == end))
# create wide format
df_out_wide <- df %>%
filter(Domain == "Eukaryota") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
# REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
REGION == "Axial" ~ VENT
)) %>% select(-Sample_tmp) %>%
# unite(VENTNAME, sep = "_", remove = FALSE) %>%
group_by(FeatureID, VENT) %>%
summarise(SUM = sum(AVG)) %>%
pivot_wider(names_from = FeatureID, values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "VENT")
# Assign row names and calc distance metric
vents <- row.names(df_out_wide)
dist_bray <- as.data.frame(as.matrix(vegdist(df_out_wide, method = "bray"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Bray_Curtis_metric = value)
dist_jacc <- as.data.frame(as.matrix(vegdist(df_out_wide, method = "jaccard"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Jaccard_metric = value)
dist_jacc_clr <- as.data.frame(as.matrix(vegdist(compositions::clr(df_out_wide), method = "euclidean"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Jaccard_CLR_metric = value)
dist_ilr_euc <- as.data.frame(as.matrix(dist(compositions::ilr(df_out_wide), method = "euclidean"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = vents, names_to = "end") %>%
select(start, end, Euclidean_ILR_metric = value)
# Combine all distance outputs - use dist_m
dist_compiled_output <- dist_m %>%
select(start, end, meters = value) %>%
left_join(dist_jacc_clr) %>%
left_join(dist_bray) %>%
left_join(dist_jacc) %>%
left_join(dist_ilr_euc) %>%
pivot_longer(cols = ends_with("_metric"), names_to = "comm_dist") %>%
filter(!(start == end))
}Calculate distance matrix for MCR samples
vd_vents_dist <- est_distances_mcr(vd_vents)## Warning: Expected 4 pieces. Additional pieces discarded in 4232 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
picc_vents_dist <- est_distances_mcr(picc_vents)## Warning: Expected 4 pieces. Additional pieces discarded in 1280 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
vd_picc_dist <- est_distances_mcr(vd_picc_vents)## Warning: Expected 4 pieces. Additional pieces discarded in 5512 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# View(vd_vents_dist)
# View(vd_vents)Something is off about the Shrimp Hole lat/long?
# head(vd_vents_dist)
ggplot(vd_vents_dist, aes(x = meters, y = value)) +
geom_jitter(stat = "identity") +
facet_grid(comm_dist ~ ., scales = "free") +
geom_smooth(method="lm") +
labs(title = "Von Damm", x = "Distance (m)", y = "Metric") +
theme_linedraw() +
ggplot(picc_vents_dist, aes(x = meters, y = value)) +
geom_jitter(stat = "identity") +
facet_grid(comm_dist ~ ., scales = "free") +
geom_smooth(method="lm") +
labs(title = "Piccard", x = "Distance (m)", y = "Metric") +
theme_linedraw() +
patchwork::plot_layout(ncol = 2)# ggplot(vd_picc_dist, aes(x = meters, y = value)) +
# geom_jitter(stat = "identity") +
# facet_grid(comm_dist ~ ., scales = "free")
# View(vd_picc_dist)Look at top ASVs within Piccard and Von Damm
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
# top15(insitu_asv_wClass, 10, all, Phylum, "Ciliophora", CLASS, all_class, Class)
length(unique(vd_picc_shared$Phylum))## [1] 25
phylums <- as.character(unique(vd_picc_shared$Phylum))
top15(vd_picc_shared, 10, all, Phylum, phylums, CLASS, all_class, Class)## Warning in (~Phylum) == taxa: longer object length is not a multiple of shorter
## object length
# View(vd_picc_shared %>%
# group_by(Supergroup, Phylum, Class, Order, Family, Genus) %>%
# summarise(SUM = sum(value)) %>%
# ungroup() %>%
# group_by(Supergroup) %>%
# top_n(5, wt = SUM))head(vd_picc_shared)## # A tibble: 6 × 35
## FeatureID SAMPLE value Taxon Domain Supergroup Phylum Class Order Family Genus
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 006f5664… 66_MC… 281 Euka… Eukar… Stramenop… Ochro… Chry… Chry… Chrys… Chry…
## 2 006f5664… 70_MC… 74 Euka… Eukar… Stramenop… Ochro… Chry… Chry… Chrys… Chry…
## 3 006f5664… 71_MC… 117 Euka… Eukar… Stramenop… Ochro… Chry… Chry… Chrys… Chry…
## 4 006f5664… 77_MC… 87 Euka… Eukar… Stramenop… Ochro… Chry… Chry… Chrys… Chry…
## 5 006f5664… 78_MC… 52 Euka… Eukar… Stramenop… Ochro… Chry… Chry… Chrys… Chry…
## 6 006f5664… 80_MC… 74 Euka… Eukar… Stramenop… Ochro… Chry… Chry… Chrys… Chry…
## # … with 24 more variables: Species <chr>, Consensus <dbl>, SAMPLENAME <chr>,
## # VENT <chr>, COORDINATES <chr>, SITE <chr>, SAMPLEID <chr>, DEPTH <chr>,
## # SAMPLETYPE <chr>, YEAR <chr>, TEMP <chr>, pH <chr>, PercSeawater <chr>,
## # Mg <chr>, H2 <chr>, H2S <chr>, CH4 <chr>, ProkConc <chr>,
## # Sample_or_Control <chr>, DATASET <chr>, DECONTAM <chr>, CLASS <chr>,
## # SITE_CLASS <chr>, OCEAN <chr>
length(unique(vd_picc_shared$FeatureID))## [1] 235
tmp3 <- vd_picc_shared %>%
filter(value > 25)
length(unique(tmp3$FeatureID))## [1] 206
more_than_25 <- as.character(unique(tmp3$FeatureID))vd_picc_shared %>%
filter(FeatureID %in% more_than_25) %>%
filter(!is.na(Phylum)) %>%
filter(!(Phylum == "Metazoa")) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
# REGION == "Axial" ~ VENT
)) %>% select(-Sample_tmp) %>%
group_by(SITE, YEAR, VENTNAME, FeatureID, Taxon, Domain, Supergroup, Phylum, Class) %>%
summarise(SUM = sum(value)) %>%
ungroup() %>%
mutate(BIN = ifelse(SUM > 0, 1, NA)) %>%
# pivot_wider(names_from = SAMPLENAME, values_from = BIN) %>%
ggplot(aes(x = VENTNAME, y = FeatureID, fill = BIN)) +
geom_tile(fill = "grey", color = "black") +
theme_minimal() +
facet_grid(Phylum ~ SITE + YEAR, space = "free", scales = "free") +
theme(axis.text.y = element_blank(),
axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5),
strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5))## Warning: Expected 4 pieces. Additional pieces discarded in 737 rows [1, 2, 3, 4,
## 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# Function usage:
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(insitu_asv_wClass, 15, all, Domain, "Eukaryota", CLASS, all_class, Phylum)# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(insitu_asv_wClass, 15, all, Domain, "Eukaryota", SITE_CLASS, "All sites", Phylum)Out of all the ASVs and sequences, what percentage of ASVs were found at all 4 of my vent sites? what % of ASVs were unique to individual sites? what % of sequences?
totalasvs <- length(unique(insitu_asv_wClass$FeatureID)); totalasvs## [1] 12375
totalseq <- sum(insitu_asv_wClass$value); totalseq## [1] 3788734
unique(insitu_asv_wClass$SITE_CLASS)## [1] "Gorda Ridge only" "Axial only"
## [3] "Von Damm only" "Piccard & Von Damm"
## [5] "Piccard only" "MCR & Axial"
## [7] "Axial & Gorda Ridge" "Von Damm & Gorda Ridge"
## [9] "Von Damm, Axial, & Gorda Ridge" "Von Damm & Axial"
## [11] "All sites" "MCR & Gorda Ridge"
## [13] "Piccard, Axial, & Gorda Ridge" "Piccard & Gorda Ridge"
## [15] "Piccard & Axial"
tmp_unique <- filter(insitu_asv_wClass, grepl(" only", SITE_CLASS))
tmp_shared <- filter(insitu_asv_wClass, !(grepl(" only", SITE_CLASS)))
tmp_allshared <- filter(insitu_asv_wClass, SITE_CLASS == "All sites")
# Total number of ASVs that were found only at an individual vent site
a <- length(unique(tmp_unique$FeatureID)); a## [1] 10191
100*(a/totalasvs)## [1] 82.35152
a_sum <- sum(tmp_unique$value); a_sum## [1] 1187229
100*(a_sum/totalseq)## [1] 31.33577
# Total number of ASVs that were found at more than 1 site
b <- length(unique(tmp_shared$FeatureID)); b## [1] 2184
100*(b/totalasvs)## [1] 17.64848
b_sum <- sum(tmp_shared$value); b_sum## [1] 2601505
100*(b_sum/totalseq)## [1] 68.66423
# Total number of ASVs designated to be found at all sites
c <- length(unique(tmp_allshared$FeatureID)); c## [1] 194
100*(c/totalasvs)## [1] 1.567677
c_sum <- sum(tmp_allshared$value); c_sum## [1] 834734
100*(c_sum/totalseq)## [1] 22.032
From the vent-only ASVs, what percentage of them appear only at 1 site? what percent also appear at other vent sites?
resident_only <- filter(insitu_asv_wClass, CLASS == "Vent only")
totalasvs <- length(unique(resident_only$FeatureID)); totalasvs## [1] 8107
totalseq <- sum(resident_only$value); totalseq## [1] 1267675
# resident includes
100*(totalasvs/length(unique(insitu_asv_wClass$FeatureID)))## [1] 65.51111
100*(totalseq/length(unique(insitu_asv_wClass$FeatureID)))## [1] 10243.84
# unique(resident_only$SITE_CLASS)
tmp_unique <- filter(resident_only, grepl(" only", SITE_CLASS))
tmp_shared <- filter(resident_only, !(grepl(" only", SITE_CLASS)))
tmp_allshared <- filter(resident_only, SITE_CLASS == "All sites")
# Of the ASVs found ONLY within diffuse venting fluid, just over 90% were unique to only the individual vent site - makes up 53% of the vent only sequences
a <- length(unique(tmp_unique$FeatureID)); a## [1] 7325
100*(a/totalasvs)## [1] 90.35402
a_sum <- sum(tmp_unique$value); a_sum## [1] 682645
100*(a_sum/totalseq)## [1] 53.85016
# Of the ASVs from vent only, 9.6% were also found at other vent sites, totals to 46% of the sequences.
b <- length(unique(tmp_shared$FeatureID)); b## [1] 782
100*(b/totalasvs)## [1] 9.645985
b_sum <- sum(tmp_shared$value); b_sum ## [1] 585030
100*(b_sum/totalseq)## [1] 46.14984
# Total number of ASVs designated to be found at all sites
c <- length(unique(tmp_allshared$FeatureID)); c## [1] 7
100*(c/totalasvs)## [1] 0.08634513
c_sum <- sum(tmp_allshared$value); c_sum## [1] 3022
100*(c_sum/totalseq)## [1] 0.2383892
vent_only_allsites <- tmp_allshared
# View(vent_only_allsites)
# unique(vent_only_allsites$Taxon)
# unique(vent_only_allsites$FeatureID)# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(resident_only, 10, all, Domain, "Eukaryota", CLASS, all_class, Phylum)Isolate ASVs that were found in all habitat types! (Vent, plume, & background)
# unique(insitu_asv_wClass$CLASS)
cosmo <- c("Vent, plume, & background", "Vent & background", "Vent & plume", "Plume & background")
# cosmo <- c("Vent, plume, & background")
cosmo_only <- filter(insitu_asv_wClass, CLASS %in% cosmo)
totalasvs <- length(unique(cosmo_only$FeatureID)); totalasvs## [1] 2133
totalseq <- sum(cosmo_only$value); totalseq## [1] 2424982
100*(totalasvs/length(unique(insitu_asv_wClass$FeatureID)))## [1] 17.23636
100*(totalseq/sum(insitu_asv_wClass$value))## [1] 64.00507
# unique(cosmo_only$SITE_CLASS)
tmp_unique <- filter(cosmo_only, grepl(" only", SITE_CLASS))
tmp_shared <- filter(cosmo_only, !(grepl(" only", SITE_CLASS)))
tmp_allshared <- filter(cosmo_only, SITE_CLASS == "All sites")
# Of the ASVs found in all habitat types (vent, plume, and background) - 22% of them were unique to a given site, but found throughout, consisting of 7.6%
a <- length(unique(tmp_unique$FeatureID)); a## [1] 761
100*(a/totalasvs)## [1] 35.67745
a_sum <- sum(tmp_unique$value); a_sum## [1] 414955
100*(a_sum/totalseq)## [1] 17.11167
# Of the ASVs found in all habitat types, 77% of them were also found at another vent site, consisting of 92% of the sequences
b <- length(unique(tmp_shared$FeatureID)); b## [1] 1372
100*(b/totalasvs)## [1] 64.32255
b_sum <- sum(tmp_shared$value); b_sum ## [1] 2010027
100*(b_sum/totalseq)## [1] 82.88833
# Of the ASVS found in all habitat types, 16% of them were found at all vent sites, which made up 40% of the sequences.
c <- length(unique(tmp_allshared$FeatureID)); c## [1] 187
100*(c/totalasvs)## [1] 8.766995
c_sum <- sum(tmp_allshared$value); c_sum## [1] 831712
100*(c_sum/totalseq)## [1] 34.29766
# top15 <- function(df, NUM, site, level, taxa, class, category, plot_tax)
top15(cosmo_only, 10, all, Domain, "Eukaryota", CLASS, all_class, Phylum)# cosmo <- c("Vent, plume, & background", "Vent & background", "Vent & plume", "Plume & background")
cosmo <- c("Vent, plume, & background")
# cosmo_only <- filter(insitu_asv_wClass, CLASS %in% cosmo)
res <- c("Vent only")isolate_calc_jaccard <- function(df, slice){
df_out_wide <- df %>%
filter(Domain == "Eukaryota") %>%
filter(CLASS %in% slice) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = FALSE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ paste(SITE, VENT, sep = " "),
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(SITE, VENT, YEAR, sep = " ")
# REGION == "Axial" ~ VENT
)) %>% select(-Sample_tmp) %>%
unite(SAMPLEID, SITE, VENT, YEAR, SAMPLETYPE, sep = "-", remove = FALSE) %>%
unite(sample_full, SAMPLEID, VENTNAME, sep = "--") %>%
group_by(FeatureID, sample_full) %>%
summarise(SUM = sum(AVG)) %>%
pivot_wider(names_from = FeatureID, values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "sample_full")
}
resident <- isolate_calc_jaccard(insitu_asv_wClass, res)## Warning: Expected 4 pieces. Additional pieces discarded in 10510 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
cosmopolitan <- isolate_calc_jaccard(insitu_asv_wClass, cosmo)## Warning: Expected 4 pieces. Additional pieces discarded in 8429 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# dist_jacc <- as.data.frame(as.matrix(vegdist(df_out_wide, method = "jaccard"))) %>%
# rownames_to_column(var = "start") %>%
# pivot_longer(cols = vents, names_to = "end") %>%
# select(start, end, Jaccard_metric = value)
# Assign row names and calc distance metric
# vents <- row.names(df_out_wide)
# dist_bray <- as.data.frame(as.matrix(vegdist(df_out_wide, method = "bray"))) %>%
# rownames_to_column(var = "start") %>%
# pivot_longer(cols = vents, names_to = "end") %>%
# select(start, end, Bray_Curtis_metric = value) %>%
# distinct()
dist_jacc_clr_res <- as.data.frame(as.matrix(vegdist(compositions::clr(resident), method = "euclidean"))) %>%
# dist_jacc_clr_res <- as.data.frame(as.matrix(vegdist(resident, method = "bray"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = row.names(resident), names_to = "end") %>%
select(start, end, Jaccard_CLR_metric = value) %>%
mutate(VARS = purrr::map2_chr(start, end, ~toString(sort(c(.x, .y))))) %>%
distinct(VARS, .keep_all = TRUE) %>%
separate(VARS, c("X", "Y"), sep = ", ") %>%
select(-start, -end) %>%
add_column(SUBSET = "RESIDENT")
# range(dist_jacc_clr_res$Jaccard_CLR_metric)
# ggplot(dist_jacc_clr_res, aes(x = X, y = Y, fill = Jaccard_CLR_metric)) +
# geom_tile() +
# theme_minimal() +
# theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5))
dist_jacc_clr_cos <- as.data.frame(as.matrix(vegdist(compositions::clr(cosmopolitan), method = "euclidean"))) %>%
# dist_jacc_clr_cos <- as.data.frame(as.matrix(vegdist(cosmopolitan, method = "bray"))) %>%
rownames_to_column(var = "start") %>%
pivot_longer(cols = row.names(cosmopolitan), names_to = "end") %>%
select(start, end, Jaccard_CLR_metric = value) %>%
mutate(VARS = purrr::map2_chr(start, end, ~toString(sort(c(.x, .y))))) %>%
distinct(VARS, .keep_all = TRUE) %>%
# Flip the Y and X variables for cosmopolitan - will appear at bottom
separate(VARS, c("Y", "X"), sep = ", ") %>%
select(-start, -end) %>%
add_column(SUBSET = "COSMOPOLITAN")
###
joined_dist <- dist_jacc_clr_cos %>%
rbind(dist_jacc_clr_res) %>%
separate(Y, c("Y_FULL", "Y"), sep = "--") %>%
separate(Y_FULL, c("Y_SITE", "Y_VENT", "Y_YEAR"), sep = "-") %>%
separate(X, c("X_FULL", "X"), sep = "--") %>%
separate(X_FULL, c("X_SITE", "X_VENT", "X_YEAR"), sep = "-")## Warning: Expected 3 pieces. Additional pieces discarded in 930 rows [1, 2, 3, 4,
## 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 3 pieces. Additional pieces discarded in 930 rows [1, 2, 3, 4,
## 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# head(joined_dist)ggplot(joined_dist, aes(x = X, y = Y, fill = Jaccard_CLR_metric)) +
geom_tile(color = "#474440") +
theme_minimal() +
theme(axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5),
axis.title = element_blank()) +
scale_fill_gradientn(colors = c("#badbdb", "#dedad2", "#e4bcad", "#df979e", "#d7658b", "#c80064")) +
coord_fixed(ratio = 1) # facet_grid(Y_SITE ~ X_SITE, scale = "free", space = "free")Look at lowest Jaccard metric among samples that are from separate sites.
head(joined_dist)## # A tibble: 6 × 10
## Jaccard_CLR_metr… Y_SITE Y_VENT Y_YEAR Y X_SITE X_VENT X_YEAR X SUBSET
## <dbl> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 0 Gorda… Cande… 2019 Gord… Gorda… Cande… 2019 Gord… COSMO…
## 2 22.5 Gorda… Cande… 2019 Gord… Gorda… Deep … 2019 Gord… COSMO…
## 3 23.6 Gorda… Cande… 2019 Gord… Gorda… Mt Ed… 2019 Gord… COSMO…
## 4 25.9 Gorda… Cande… 2019 Gord… Gorda… Near … 2019 Gord… COSMO…
## 5 22.1 Gorda… Cande… 2019 Gord… Gorda… Shall… 2019 Gord… COSMO…
## 6 29.4 Gorda… Cande… 2019 Gord… Gorda… Sir V… 2019 Gord… COSMO…
# Across site similarities
# View(joined_dist %>%
# # Isolate pairwise comparisons from with each site
# filter(X_SITE != Y_SITE) %>%
# # Isolate resident
# filter(SUBSET == "RESIDENT") %>%
# arrange(Jaccard_CLR_metric))# Not sure if I need this
tax_key <- insitu_asv_wClass %>%
select(FeatureID, Taxon, Domain, Supergroup, Phylum, Class, Order, Family, Genus, Species, CLASS, SITE_CLASS) %>%
distinct()# head(insitu_asv_wClass)
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
tmp <- insitu_asv_wClass %>%
filter(Domain == "Eukaryota") %>%
filter(!is.na(Supergroup)) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, REGION, VENTNAME, sep = " ", remove = FALSE) %>%
group_by(FeatureID, SAMPLE) %>%
summarise(SUM = sum(AVG)) %>%
pivot_wider(names_from = "SAMPLE", values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "FeatureID") %>%
mutate(PREVALENCE = rowSums(. > 0),
SEQ_TOTAL = rowSums(.)) %>%
rownames_to_column(var = "FeatureID") %>%
left_join(tax_key) %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
))## Warning: Expected 4 pieces. Additional pieces discarded in 25354 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# head(tmp)
tmp %>%
filter(SEQ_TOTAL > 0) %>%
ggplot(aes(x = PREVALENCE, y = SEQ_TOTAL, fill = SUPERGROUP)) +
geom_jitter(stat = "identity", shape = 21) +
scale_y_log10() +
facet_wrap(SUPERGROUP ~ .) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#deebf7", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
theme_linedraw() +
labs(x = "Number of samples ASV appears in", y = "Total sequences (log)")head(insitu_asv_wClass) # from above, where I've classified each ASV by site and occurence in sample type## # A tibble: 6 × 34
## FeatureID SAMPLE value Taxon Domain Supergroup Phylum Class Order Family Genus
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 00056209… Gorda… 8 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 2 00056209… Gorda… 13 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 3 00096455… Gorda… 91 Euka… Eukar… Rhizaria Radio… Acan… <NA> <NA> <NA>
## 4 000ee377… Axial… 282 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 5 000ee377… Axial… 32 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 6 00165708… Gorda… 1 Euka… Eukar… Stramenop… Ochro… Pela… Pela… Pelag… Pela…
## # … with 23 more variables: Species <chr>, Consensus <dbl>, SAMPLENAME <chr>,
## # VENT <chr>, COORDINATES <chr>, SITE <chr>, SAMPLEID <chr>, DEPTH <chr>,
## # SAMPLETYPE <chr>, YEAR <chr>, TEMP <chr>, pH <chr>, PercSeawater <chr>,
## # Mg <chr>, H2 <chr>, H2S <chr>, CH4 <chr>, ProkConc <chr>,
## # Sample_or_Control <chr>, DATASET <chr>, DECONTAM <chr>, CLASS <chr>,
## # SITE_CLASS <chr>
unique(insitu_asv_wClass$CLASS)## [1] "Vent only" "Background only"
## [3] "Vent & background" "Vent, plume, & background"
## [5] "Plume only" "Vent & plume"
## [7] "Plume & background"
unique(insitu_asv_wClass$SITE_CLASS)## [1] "Gorda Ridge only" "Axial only"
## [3] "Von Damm only" "Piccard & Von Damm"
## [5] "Piccard only" "MCR & Axial"
## [7] "Axial & Gorda Ridge" "Von Damm & Gorda Ridge"
## [9] "Von Damm, Axial, & Gorda Ridge" "Von Damm & Axial"
## [11] "All sites" "MCR & Gorda Ridge"
## [13] "Piccard, Axial, & Gorda Ridge" "Piccard & Gorda Ridge"
## [15] "Piccard & Axial"
unique(insitu_asv_wClass$SAMPLETYPE)## [1] "Vent" "Background" "Plume"
tmp <- (insitu_asv_wClass %>%
filter(DATASET == "MCR") %>%
group_by(CLASS) %>%
summarise(SEQ = sum(value),
COUNT = n()))
tmp## # A tibble: 7 × 3
## CLASS SEQ COUNT
## <chr> <dbl> <int>
## 1 Background only 16529 383
## 2 Plume & background 93779 250
## 3 Plume only 24647 489
## 4 Vent & background 181232 818
## 5 Vent & plume 217335 478
## 6 Vent only 587304 3953
## 7 Vent, plume, & background 954469 3006
# Vent only
587304/sum(tmp$SEQ) #33%## [1] 0.2829978
3953/sum(tmp$COUNT)## [1] 0.4215634
# Cosmo
954469/sum(tmp$SEQ)## [1] 0.4599197
3006/sum(tmp$COUNT)## [1] 0.3205716
33% of sequences were vent-only 42% of ASVs were vent-only
45% of sequences were cosmopolitan 32% of ASVs were cosmopolitan
What Supergroups are associated with resident vs. endemic? what about to specific sites?
make_bar_bycategory <- function(df, category, position){
CATEGORY <- enquo(category)
df_out <- df %>%
filter(Domain == "Eukaryota") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
group_by(FeatureID, Taxon, Domain, Supergroup, Phylum, Class, Order, Family, Genus, Species,
VENT, SITE, SAMPLETYPE, YEAR, DATASET, !!CATEGORY) %>%
summarise(SEQ_AVG_REP = mean(value)) %>%
ungroup()
## Supergroup
supergroup <- df_out %>%
group_by(Supergroup, !!CATEGORY) %>%
summarise(SEQ_SUM = sum(SEQ_AVG_REP)) %>%
ggplot(aes(x = !!CATEGORY, y = SEQ_SUM, fill = Supergroup)) +
geom_bar(stat = "identity", position = position, color = "black", width = 0.9) +
# facet_grid(. ~ SITE +YEAR + SAMPLETYPE, scale = "free", space = "free") +
theme_linedraw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
strip.background = element_blank(), strip.text = element_text(color = "black"),
legend.position = "right") +
scale_y_continuous(expand = c(0,0)) +
# scale_fill_brewer(palette = "Set2") +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525", "#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
labs(x = "", y = "Relative abundance")
## Phylum
phylum <- df_out %>%
unite(SupergroupPhylum, Supergroup, Phylum, sep = "-") %>%
group_by(SupergroupPhylum, !!CATEGORY) %>%
summarise(SEQ_SUM = sum(SEQ_AVG_REP)) %>%
ggplot(aes(x = !!CATEGORY, y = SEQ_SUM, fill = SupergroupPhylum)) +
geom_bar(stat = "identity", position = position, color = "black", width = 0.9) +
# facet_grid(. ~ SITE +YEAR + SAMPLETYPE, scale = "free", space = "free") +
theme_linedraw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
strip.background = element_blank(), strip.text = element_text(color = "black"),
legend.position = "right") +
scale_y_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#f1eef6", "#d7b5d8", "#df65b0", "#ce1256", "#fc9272", "#ef3b2c",
"#800026", "#fff7bc", "#fec44f", "#d95f0e", "#a63603", "#74c476", "#238b45",
"#00441b", "#7fcdbb", "#084081", "#c6dbef", "#2b8cbe", "#016c59", "#bcbddc",
"#807dba", "#54278f", "#bdbdbd", "black", "white", "#969696", "#525252", "#f1eef6", "#d7b5d8", "#df65b0", "#ce1256", "#fc9272", "#ef3b2c",
"#800026", "#fff7bc", "#fec44f", "#d95f0e", "#a63603", "#74c476", "#238b45",
"#00441b", "#7fcdbb", "#084081", "#c6dbef", "#2b8cbe", "#016c59", "#bcbddc",
"#807dba", "#54278f", "#bdbdbd", "black", "white")) +
labs(x = "", y = "Relative abundance")
supergroup + phylum + patchwork::plot_layout(ncol = 1)
}make_tile_bycategory <- function(df, category, position){
CATEGORY <- enquo(category)
df_out <- df %>%
filter(Domain == "Eukaryota") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
group_by(FeatureID, Taxon, Domain, Supergroup, Phylum, Class, Order, Family, Genus, Species,
VENT, SITE, SAMPLETYPE, YEAR, DATASET, !!CATEGORY) %>%
summarise(SEQ_AVG_REP = mean(value)) %>%
ungroup()
## Supergroup
supergroup <- df_out %>%
group_by(Supergroup, !!CATEGORY) %>%
summarise(SEQ_SUM = sum(SEQ_AVG_REP)) %>%
ggplot(aes(x = !!CATEGORY, fill = log(SEQ_SUM), y = Supergroup)) +
geom_tile(color = "black") +
# facet_grid(. ~ SITE +YEAR + SAMPLETYPE, scale = "free", space = "free") +
theme_linedraw() +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
strip.background = element_blank(), strip.text = element_text(color = "black"),
legend.position = "right") +
scale_fill_gradient(low = "#ffeda0", high = "#e31a1c", na.value = "grey50") +
labs(x = "Distribution", y = "")
supergroup
}make_tile_bycategory(insitu_asv_wClass, CLASS, "fill")# make_bar_bycategory(insitu_asv_wClass, CLASS, "fill")make_bar_bycategory(insitu_asv_wClass, CLASS, "stack")make_bar_bycategory(insitu_asv_wClass, SITE_CLASS, "fill")make_tile_bycategory(insitu_asv_wClass, SITE_CLASS, "fill")make_bar_bycategory(insitu_asv_wClass, SITE_CLASS, "stack")categories <- c("Vent only", "Vent, plume, & background")
insitu_asv_wClass %>%
filter(CLASS %in% categories) %>%
mutate(CAT = case_when(
CLASS == "Vent only" ~ "Resident",
TRUE ~ "Cosmopolitan"
)) %>%
group_by(CAT) %>%
summarise(SUM = sum(value),
COUNT = n()) %>%
pivot_longer(c(SUM, COUNT)) %>%
ggplot(aes(x = name, y = value, fill = CAT))+
geom_bar(stat = "identity", position = "dodge", color = "black") +
theme_linedraw() +
facet_grid(name ~ ., scales = "free")+
scale_fill_brewer(palette = "Dark2") +
theme(legend.title = element_blank()) +
labs(x = "", y = "Total number of ASVs")head(insitu_asv_wClass)## # A tibble: 6 × 34
## FeatureID SAMPLE value Taxon Domain Supergroup Phylum Class Order Family Genus
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr> <chr> <chr> <chr> <chr>
## 1 00056209… Gorda… 8 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 2 00056209… Gorda… 13 Euka… Eukar… Stramenop… Sagen… <NA> <NA> <NA> <NA>
## 3 00096455… Gorda… 91 Euka… Eukar… Rhizaria Radio… Acan… <NA> <NA> <NA>
## 4 000ee377… Axial… 282 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 5 000ee377… Axial… 32 Euka… Eukar… Alveolata Cilio… Nass… Nass… Disco… NASS…
## 6 00165708… Gorda… 1 Euka… Eukar… Stramenop… Ochro… Pela… Pela… Pelag… Pela…
## # … with 23 more variables: Species <chr>, Consensus <dbl>, SAMPLENAME <chr>,
## # VENT <chr>, COORDINATES <chr>, SITE <chr>, SAMPLEID <chr>, DEPTH <chr>,
## # SAMPLETYPE <chr>, YEAR <chr>, TEMP <chr>, pH <chr>, PercSeawater <chr>,
## # Mg <chr>, H2 <chr>, H2S <chr>, CH4 <chr>, ProkConc <chr>,
## # Sample_or_Control <chr>, DATASET <chr>, DECONTAM <chr>, CLASS <chr>,
## # SITE_CLASS <chr>
unique(insitu_asv_wClass$CLASS)## [1] "Vent only" "Background only"
## [3] "Vent & background" "Vent, plume, & background"
## [5] "Plume only" "Vent & plume"
## [7] "Plume & background"
unique(insitu_asv_wClass$SITE_CLASS)## [1] "Gorda Ridge only" "Axial only"
## [3] "Von Damm only" "Piccard & Von Damm"
## [5] "Piccard only" "MCR & Axial"
## [7] "Axial & Gorda Ridge" "Von Damm & Gorda Ridge"
## [9] "Von Damm, Axial, & Gorda Ridge" "Von Damm & Axial"
## [11] "All sites" "MCR & Gorda Ridge"
## [13] "Piccard, Axial, & Gorda Ridge" "Piccard & Gorda Ridge"
## [15] "Piccard & Axial"
unique(insitu_asv_wClass$SAMPLETYPE)## [1] "Vent" "Background" "Plume"
# head(insitu_asv_wClass)
insitu_asv_wClass %>%
# filter(SITE %in% selection) %>%
filter(Domain == "Eukaryota") %>%
filter(!is.na(Supergroup)) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup, Phylum, CLASS, SITE_CLASS) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, VENTNAME, sep = " ", remove = FALSE) %>%
# filter(CLASS == "Vent only") %>%
group_by(Supergroup, CLASS) %>%
summarise(SEQ_SUM = sum(AVG),
ASV_COUNT = n()) %>%
pivot_longer(cols = c(SEQ_SUM, ASV_COUNT)) %>%
filter(name == "SEQ_SUM") %>%
ggplot(aes(x = CLASS, y = value, fill = Supergroup)) +
geom_hline(yintercept = 0) +
geom_segment(aes(x = CLASS, xend = CLASS,
y = 0, yend = value, color = Supergroup),
lineend = "butt", size = 1) +
geom_point(size = 2, shape = 19, aes(color = Supergroup)) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
scale_color_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
theme_bw() +
facet_grid(. ~ Supergroup, scales = "free") +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1, color = "black", size = 11),
axis.text.y = element_text(color = "black", size = 12),
panel.spacing.x = unit(0, "lines"),panel.spacing.y = unit(0, "lines"),
panel.border = element_blank(),
panel.grid = element_blank(),
strip.background.x = element_blank(),
strip.text = element_text(size = 11),
legend.position = "none") +
coord_flip() +
labs(x = "", y ="Total sequences", title = "Number of 'vent-only' sequences by Supergroup & location")## Warning: Expected 4 pieces. Additional pieces discarded in 25354 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# ?scale_fill_brewer# head(insitu_asv_wClass)
insitu_asv_wClass %>%
# filter(SITE %in% selection) %>%
filter(Domain == "Eukaryota") %>%
filter(!is.na(Supergroup)) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Supergroup, Phylum, CLASS, SITE_CLASS) %>%
summarise(AVG = mean(value)) %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, REGION, VENTNAME, sep = " ", remove = FALSE) %>%
filter(CLASS == "Vent only") %>%
group_by(Supergroup, SITE_CLASS) %>%
summarise(SEQ_SUM = sum(AVG),
ASV_COUNT = n()) %>%
pivot_longer(cols = c(SEQ_SUM, ASV_COUNT)) %>%
filter(name != "SEQ_SUM") %>%
ggplot(aes(x = SITE_CLASS, y = value, fill = Supergroup)) +
geom_hline(yintercept = 0) +
geom_segment(aes(x = SITE_CLASS, xend = SITE_CLASS,
y = 0, yend = value, color = Supergroup),
lineend = "butt", size = 1) +
geom_point(size = 2, shape = 19, aes(color = Supergroup)) +
scale_fill_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
scale_color_manual(values = c("#fa9fb5", "#c51b8a", "#67000d", "#ef3b2c", "#ffffcc", "#feb24c", "#c7e9b4", "#1d91c0", "#253494", "#9e9ac8", "#238b45", "#54278f", "#bdbdbd", "#252525")) +
theme_bw() +
facet_grid(. ~ Supergroup, scales = "free") +
theme(axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1, color = "black", size = 11),
axis.text.y = element_text(color = "black", size = 12),
panel.spacing.x = unit(0, "lines"),panel.spacing.y = unit(0, "lines"),
panel.border = element_blank(),
panel.grid = element_blank(),
strip.background.x = element_blank(),
strip.text = element_text(size = 11),
legend.position = "none") +
coord_flip() +
labs(x = "", y ="Total ASVs", title = "Number of 'vent-only' ASVs by Supergroup & location")## Warning: Expected 4 pieces. Additional pieces discarded in 25354 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# ?scale_fill_brewerHere, I’ve isolated almost 800,000 sequences belonging to the putative endemic ASVs (vent only), totaling to 3789 ASVs. This subset includes ASVs with 10 or more sequences (a threshold to reduce noise).
endemic <- insitu_asv_wClass %>%
filter(Supergroup != "Opisthokonta") %>%
filter(CLASS == "Vent only") %>%
filter(value > 9) %>%
filter(!is.na(Supergroup))
# Sum of putative endemic sequences and ASVs
sum(endemic$value)## [1] 795686
length(unique(endemic$FeatureID))## [1] 3789
Tile plot by Class level? CLR? Coord flip below and add environmental data as heatmap along side? Combine years from Axial, group by site? Do a better compilation of taxa… additional thresholds?
alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
endemic_processed <- endemic %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
mutate(PHYLUM = case_when(
Phylum == "Unknown" ~ paste(SUPERGROUP, "Other"),
grepl("_X", Phylum) ~ paste(SUPERGROUP, "Other"),
is.na(Phylum) ~ paste(SUPERGROUP, "Other"),
TRUE ~ Phylum
)) %>%
mutate(CLASS = case_when(
Class == "Unknown" ~ PHYLUM,
grepl("_X", Class) ~ PHYLUM,
is.na(Class) ~ Phylum,
grepl("MAST-", Class) ~ "MAST",
TRUE ~ Class
)) %>%
filter(SUPERGROUP != "Archaeplastida") %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Domain, SUPERGROUP, PHYLUM, CLASS, Order, Family, Genus, Species) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
filter(!is.na(SUPERGROUP)) %>%
# Sum to the Order taxonomic classification
unite(SAMPLENAME_2, SAMPLENAME, VENT, sep = "_") %>%
group_by(SAMPLENAME_2, SUPERGROUP, PHYLUM, CLASS) %>%
summarise(CLASS_SUM = sum(AVG)) %>%
unite(CLASS, SUPERGROUP, PHYLUM, CLASS, sep = "_") %>%
select(CLASS, SAMPLENAME_2, CLASS_SUM) %>%
pivot_wider(names_from = SAMPLENAME_2, values_from = CLASS_SUM, values_fill = 0) %>%
column_to_rownames(var = "CLASS")
# head(endemic_processed)## Take wide data frame and CLR transform, pivot to wide, and plot
# svg("tileplot-endemic-bysample.svg", h = 5, w = 19)
data.frame(compositions::clr(endemic_processed)) %>%
rownames_to_column(var = "CLASS") %>%
pivot_longer(cols = starts_with(all), values_to = "CLR", names_to = "SAMPLENAME_2") %>%
separate(SAMPLENAME_2, c("SAMPLENAME", "VENT"), sep = "_") %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(VENT = str_replace_all(VENT, "\\.", " ")) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ VENT
# REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, VENTNAME, sep = " ", remove = FALSE) %>%
separate(CLASS, c("Supergroup", "Phylum", "Class"), sep = "_", remove = FALSE) %>%
ggplot(aes(x = SAMPLE, y = Class, fill = CLR)) +
geom_tile(color = "#252525") +
theme(legend.position = "right",
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
panel.border = element_blank(),
panel.background = element_blank(),
axis.text.x = element_text(angle = 90, hjust = 1, vjust = 0.5, color = "black",size = 8),
axis.text.y = element_text(color = "black", size = 8),
strip.background = element_blank(),
strip.text.y = element_text(hjust = 0, vjust = 0.5, angle = 0),
legend.title = element_blank(),
strip.placement = "outside") +
labs(x = "", y = "") +
coord_flip() +
# scale_fill_gradient2(low = "#4575b4", mid = "white", high = "#d73027", na.value = "grey50") +
scale_fill_steps2(
low = "#2166ac",
mid = "white",
high = "#b2182b",
midpoint = 0,
space = "Lab",
na.value = "#4d4d4d",
guide = "coloursteps",
aesthetics = "fill"
) +
facet_grid(SITE ~ Supergroup + Phylum, space = "free", scales = "free", switch = "both")## Warning: Expected 4 pieces. Additional pieces discarded in 2752 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 3 pieces. Additional pieces discarded in 224 rows [33, 34, 35,
## 36, 37, 38, 39, 40, 41, 42, 43, 44, 45, 46, 47, 48, 49, 50, 51, 52, ...].
# dev.off()
# ?scale_fill_steps2()alv <- c("Alveolata-Ellobiopsidae", "Alveolata-Perkinsea", "Alveolata-Unknown", "Alveolata-Chrompodellids", "Alveolata-Apicomplexa")
ciliate <- c("Ciliophora")
plot_endemic_fingerprint <- function(threshold, selection){
endemic_processed_asv <- endemic %>%
filter(Domain == "Eukaryota") %>%
filter(Supergroup != "Opisthokonta") %>%
mutate(Supergroup = ifelse(is.na(Supergroup), "Unknown Eukaryota", Supergroup),
Phylum = ifelse(is.na(Phylum), "Unknown", Phylum),
Phylum = ifelse(Phylum == "Alveolata_X", "Ellobiopsidae", Phylum),
Supergroup = ifelse(Supergroup == "Alveolata", paste(Supergroup, Phylum, sep = "-"), Supergroup)) %>%
mutate(SUPERGROUP = case_when(
Supergroup %in% alv ~ "Other Alveolata",
Supergroup == "Eukaryota_X" ~ "Unknown Eukaryota",
Phylum == "Cercozoa" ~ "Rhizaria-Cercozoa",
Phylum == "Radiolaria" ~ "Rhizaria-Radiolaria",
Phylum == "Ochrophyta" ~ "Stramenopiles-Ochrophyta",
Phylum == "Opalozoa" ~ "Stramenopiles-Opalozoa",
Phylum == "Sagenista" ~ "Stramenopiles-Sagenista",
TRUE ~ Supergroup
)) %>%
mutate(PHYLUM = case_when(
Phylum == "Unknown" ~ paste(SUPERGROUP, "Other"),
grepl("_X", Phylum) ~ paste(SUPERGROUP, "Other"),
is.na(Phylum) ~ paste(SUPERGROUP, "Other"),
TRUE ~ Phylum
)) %>%
mutate(CLASS = case_when(
Class == "Unknown" ~ PHYLUM,
grepl("_X", Class) ~ PHYLUM,
is.na(Class) ~ Phylum,
grepl("MAST-", Class) ~ "MAST",
TRUE ~ Class
)) %>%
# Average across replicates
group_by(FeatureID, SAMPLENAME, VENT, Domain, SUPERGROUP, PHYLUM, CLASS, Order, Family, Genus, Species) %>%
summarise(AVG = mean(value)) %>%
ungroup() %>%
filter(!is.na(SUPERGROUP)) %>%
filter(!is.na(PHYLUM)) %>%
filter(AVG > threshold) %>%
filter(PHYLUM %in% selection) %>%
# Sum to the Order taxonomic classification
unite(SAMPLENAME_2, SAMPLENAME, VENT, sep = "_") %>%
group_by(SAMPLENAME_2, SUPERGROUP, PHYLUM, FeatureID) %>%
summarise(SUM = sum(AVG)) %>%
unite(PHYLUM_ASV, PHYLUM, FeatureID, sep = "_") %>%
select(PHYLUM_ASV, SAMPLENAME_2, SUM) %>%
pivot_wider(names_from = SAMPLENAME_2, values_from = SUM, values_fill = 0) %>%
column_to_rownames(var = "PHYLUM_ASV")
###
data.frame(compositions::clr(endemic_processed_asv)) %>%
rownames_to_column(var = "PHYLUM_ASV") %>%
pivot_longer(cols = starts_with(all), values_to = "CLR", names_to = "SAMPLENAME_2") %>%
separate(SAMPLENAME_2, c("SAMPLENAME", "VENT"), sep = "_") %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(VENT = str_replace_all(VENT, "\\.", " ")) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ VENT
# REGION == "Axial" ~ paste(VENT, YEAR, sep = " ")
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, VENTNAME, sep = " ", remove = FALSE) %>%
separate(PHYLUM_ASV, c("Phylum", "FeatureID"), sep = "_", remove = FALSE) %>%
ggplot(aes(x = SAMPLE, y = FeatureID, fill = CLR)) +
geom_tile() +
theme(legend.position = "right",
panel.grid.major = element_blank(),
panel.grid.minor = element_blank(),
panel.border = element_blank(),
panel.background = element_blank(),
axis.text.x = element_blank(),
# axis.text.y = element_blank(),
axis.text.y = element_text(color = "black", size = 8),
strip.background = element_blank(),
strip.text.y = element_text(hjust = 0, vjust = 0.5, angle = 0),
legend.title = element_blank(),
axis.ticks = element_blank(),
strip.placement = "outside") +
labs(x = "", y = "") +
coord_flip() +
# scale_fill_gradient2(low = "#4575b4", mid = "white", high = "#d73027", na.value = "grey50") +
scale_fill_steps2(
low = "#2166ac",
mid = "white",
high = "#b2182b",
midpoint = 0,
space = "Lab",
na.value = "#4d4d4d",
guide = "coloursteps",
aesthetics = "fill"
) +
facet_grid(SITE ~ Phylum, space = "free", scales = "free", switch = "both")
}## Take wide data frame and CLR transform, pivot to wide, and plot
# svg("tileplot-endemic-bysample.svg", h = 6, w = 20)
plot_endemic_fingerprint(1, ciliate)## Warning: Expected 4 pieces. Additional pieces discarded in 29408 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# dev.off()unique(endemic$Phylum)## [1] "Sagenista" "Ciliophora" "Cercozoa"
## [4] "Radiolaria" "Ochrophyta" "Dinoflagellata"
## [7] "Stramenopiles_X" "Pseudofungi" "Haptophyta"
## [10] NA "Perkinsea" "Opalozoa"
## [13] "Telonemia" "Lobosa" "Chlorophyta"
## [16] "Picozoa" "Centroheliozoa" "Apusomonadidae"
## [19] "Hilomonadea" "Patescibacteria" "Chrompodellids"
## [22] "Katablepharidophyta" "Prasinodermophyta" "Metamonada"
## [25] "Conosa" "Proteobacteria" "Cryptophyta"
## [28] "Apicomplexa" "Euryarchaeota" "Alveolata_X"
## [31] "Rhodophyta" "Protalveolata_X" "Discoba"
## [34] "Breviatea" "Aquificae" "Streptophyta"
plot_endemic_fingerprint(0, ciliate)## Warning: Expected 4 pieces. Additional pieces discarded in 29408 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
Subset dataset to create endemic dataset and a vent inclusive dataset.
make_bar_relabun(endemic, all) PCA analysis for resident population within each site. Reinforces what is seen in other plots, where some vent sites are more similar to one another.
plot_grid(
make_pca(endemic, axial),
make_pca(endemic, mcr),
make_pca(endemic, gr),
make_pca(endemic, all),
ncol = 2
)## Warning: Expected 4 pieces. Additional pieces discarded in 2505 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 2274 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 1372 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 6151 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# make_pca(endemic, all)# colnames(endemic)
rm <- c("-", "", "nd", "bd")
# x <- c("TEMP")
endemic_env <- function(x){
endemic %>%
unite(SAMPLENAME_2, SAMPLENAME, VENT, sep = "_") %>%
separate(SAMPLENAME_2, c("SAMPLENAME", "VENT"), sep = "_") %>%
separate(SAMPLENAME, c("SITE", "SAMPLETYPE", "YEAR", "Sample_tmp"), remove = TRUE) %>%
mutate(VENT = str_replace_all(VENT, "\\.", " ")) %>%
mutate(REGION = case_when(
SITE == "GordaRidge" ~ "Gorda Ridge",
SITE %in% mcr ~ "Mid-Cayman Rise",
SITE == "Axial" ~ "Axial")) %>%
mutate(VENTNAME = case_when(
REGION == "Gorda Ridge" ~ VENT,
REGION == "Mid-Cayman Rise" ~ paste(SITE, VENT, sep = " "),
REGION == "Axial" ~ VENT
)) %>% select(-Sample_tmp) %>%
unite(SAMPLE, SITE, VENTNAME, sep = " ", remove = FALSE) %>%
select(SAMPLE, SITE, VENTNAME, DEPTH:ProkConc) %>%
pivot_longer(cols = TEMP:ProkConc, names_to = "MEASUREMENT", values_to = "VALUE") %>%
na_if(., "bd") %>% na_if(., "nd") %>% na_if(., "-") %>% na_if(., "") %>%
filter(MEASUREMENT == x) %>%
# filter(!(VALUE %in% rm)) %>%
mutate(VALUE = as.numeric(as.character(VALUE))) %>%
distinct() %>%
ggplot(aes(x = SAMPLE, y = MEASUREMENT, fill = VALUE)) +
geom_tile(color = "black") +
coord_flip() +
facet_grid(SITE ~ MEASUREMENT, switch = "both", space = "free", scale = "free") + theme_linedraw() +
theme(axis.text.y = element_blank(),
strip.text = element_blank(),
strip.background = element_blank(),
axis.ticks = element_blank(),
strip.placement = "outside",
legend.title = element_blank(),
legend.position = "top",
legend.text = element_text(size = 5),
panel.background = element_blank(),
panel.border = element_blank(),
panel.grid = element_blank()) +
labs(x = "", y = "") +
scale_fill_distiller(palette = "Reds", direction=2, na.value = "grey50")
# viridis::scale_fill_viridis(option = "plasma")
}
##bdc3c7 → #2c3e50
# ?scale_fill_viridis
# endemic_env("TEMP")
# ?scale_fill_distiller# colnames(endemic)
# svg("env-heatmap.svg", w = 7, h = 4)
plot_grid(
endemic_env("TEMP") +
theme(axis.text.y = element_text(color = "black"),
strip.text.y = element_text(color = "black"),
strip.placement = "outside"),
endemic_env("PercSeawater"),
endemic_env("pH"),
endemic_env("Mg"),
# endemic_env("NO3"),
endemic_env("H2"),
endemic_env("CH4"),
endemic_env("H2S"),
endemic_env("ProkConc"),
nrow = 1,
rel_widths = c(5,1,1,1,1,1,1,1)
)## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning: Expected 4 pieces. Additional pieces discarded in 6252 rows [1, 2, 3,
## 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, ...].
# dev.off()Diversity model/estimation and network analysis to be run on HPC.
load("asv-tables-processed-18102021.RData", verbose = T)DivNet package - diversity estimation hypothesis testing from Amy Willis’s group. This will also characterize the uncertainty of the richness estimate. Richness estimation is flawed because of sample depth and processing methods.
library(phyloseq); library(breakaway); library(DivNet)
library(tidyverse)This code block run on HPC.
# Select eukaryotes only and create wide format dataframe
insitu_wide <- asv_insitu_qc %>%
filter(Domain == "Eukaryota") %>%
filter(!grepl("_Plume001_", SAMPLE)) %>% #removing "near vent background", not relevant in other data sets
select(FeatureID, Taxon, SAMPLE, value) %>%
pivot_wider(names_from = SAMPLE, values_from = value, values_fill = 0)
# head(insitu_wide)
insitu_samples <- as.character(colnames(insitu_wide %>% select(-Taxon, -FeatureID)))
# insitu_samplesinsitu_tax_matrix <- insitu_wide %>%
select(FeatureID, Taxon) %>%
separate(Taxon, c("Domain", "Supergroup",
"Phylum", "Class", "Order",
"Family", "Genus", "Species"), sep = ";") %>%
column_to_rownames(var = "FeatureID") %>%
as.matrix## Warning: Expected 8 pieces. Additional pieces discarded in 6222 rows [3, 4, 6,
## 7, 9, 10, 11, 12, 15, 17, 18, 20, 22, 23, 24, 25, 27, 28, 29, 32, ...].
## Warning: Expected 8 pieces. Missing pieces filled with `NA` in 4264 rows [1, 2,
## 5, 8, 13, 14, 16, 19, 21, 26, 30, 31, 33, 40, 41, 45, 46, 47, 48, 50, ...].
insitu_asv_matrix <- insitu_wide %>%
select(-Taxon) %>%
column_to_rownames(var = "FeatureID") %>%
as.matrix
# Align row names for each matrix
rownames(insitu_tax_matrix) <- row.names(insitu_asv_matrix)Reformat metadata, but change to numeric.
metadata <- read.delim("data-input/samplelist-metadata.txt", na.strings = "")
## Extract relevant metadata information
metadata_formatted <- metadata %>%
mutate_all(as.character) %>%
filter(Sample_or_Control == "Sample") %>%
filter(!(SAMPLETYPE == "Incubation")) %>%
filter(!(SAMPLETYPE == "Microcolonizer")) %>%
select(SAMPLE, VENT, COORDINATES, SITE, SAMPLEID, DEPTH, SAMPLETYPE, YEAR, TEMP = starts_with("TEMP"), pH, PercSeawater = starts_with("Perc"), Mg = starts_with("Mg"), H2 = starts_with("H2."), H2S = starts_with("H2S"), CH4 = starts_with("CH4"), ProkConc, Sample_or_Control)
# Ensure these columns are converted to numeric
env_params <- c("DEPTH", "TEMP", "pH", "PercSeawater", "Mg", "H2", "H2S", "CH4", "ProkConc")
metadata_insitu <- metadata_formatted %>%
na_if(., "bd") %>% na_if(., "nd") %>% na_if(., "-") %>% na_if(., "") %>%
filter(SAMPLE %in% insitu_samples) %>% # from reformatting df above
# select(SAMPLE, VENT, SITE, SAMPLETYPE, YEAR) %>%
unite(SAMPLELABEL, VENT, SITE, SAMPLETYPE, YEAR, sep = "_", remove = FALSE) %>%
unite(TYPE_SITE, SITE, SAMPLETYPE, sep = "_", remove = FALSE) %>%
mutate_at(env_params,as.numeric)## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
## Warning in mask$eval_all_mutate(quo): NAs introduced by coercion
rownames(metadata_insitu) <- metadata_insitu$SAMPLE
# str(metadata_insitu)
# View(metadata_insitu)
# head(metadata_insitu)
# row.names(metadata_insitu)Import taxa and ASV count matrices into phyloseq objects.
# Import asv and tax matrices
ASV = otu_table(insitu_asv_matrix, taxa_are_rows = TRUE)
TAX = tax_table(insitu_tax_matrix)
phylo_obj <- phyloseq(ASV, TAX)
# Import metadata as sample data in phyloseq
samplenames <- sample_data(metadata_insitu)
# join as phyloseq object
physeq_insitu = merge_phyloseq(phylo_obj, samplenames)
## Check
physeq_insitu## phyloseq-class experiment-level object
## otu_table() OTU Table: [ 10486 taxa and 43 samples ]
## sample_data() Sample Data: [ 43 samples by 19 sample variables ]
## tax_table() Taxonomy Table: [ 10486 taxa by 8 taxonomic ranks ]
# head(insitu_tax_matrix)
# head(metadata_insitu)
save(physeq_insitu, metadata_insitu, file = "phyloseq-objs-180122.RData") #use below for statistical analysis# ?divnet()
# Glom tax levels at the Order level, then perform divnet analysis
order_divnet <- divnet(tax_glom(physeq_insitu, taxrank = "Order"), base = 3)
order_divnet_label <- divnet(tax_glom(physeq_insitu, taxrank = "Order"), X = "SAMPLELABEL", base = 3)
# Vent vs plume vs background
order_divnet_TYPE <- divnet(tax_glom(physeq_insitu, taxrank = "Order"), X = "SAMPLETYPE", base = 3)
# location and vent vs plume vs background
order_divnet_TYPE_SITE <- divnet(tax_glom(physeq_insitu, taxrank = "Order"), X = "TYPE_SITE", base = 3)
save(order_divnet, order_divnet_label, order_divnet_TYPE, order_divnet_TYPE_SITE, file = "ORDER.Rdata")
###
fam_divnet <- divnet(tax_glom(physeq_insitu, taxrank = "Family"), base = 3)
fam_divnet_label <- divnet(tax_glom(physeq_insitu, taxrank = "Family"), X = "SAMPLELABEL", base = 3)
# Vent vs plume vs background
fam_divnet_TYPE <- divnet(tax_glom(physeq_insitu, taxrank = "Family"), X = "SAMPLETYPE", base = 3)
# location and vent vs plume vs background
fam_divnet_TYPE_SITE <- divnet(tax_glom(physeq_insitu, taxrank = "Family"), X = "TYPE_SITE", base = 3)
save(fam_divnet, fam_divnet_label, fam_divnet_TYPE, fam_divnet_TYPE_SITE, file = "FAMILY.Rdata")
###
gen_divnet <- divnet(tax_glom(physeq_insitu, taxrank = "Genus"), base = 3)
gen_divnet_label <- divnet(tax_glom(physeq_insitu, taxrank = "Genus"), X = "SAMPLELABEL", base = 3)
# Vent vs plume vs background
gen_divnet_TYPE <- divnet(tax_glom(physeq_insitu, taxrank = "Genus"), X = "SAMPLETYPE", base = 3)
# location and vent vs plume vs background
gen_divnet_TYPE_SITE <- divnet(tax_glom(physeq_insitu, taxrank = "Genus"), X = "TYPE_SITE", base = 3)
save(gen_divnet, gen_divnet_label, gen_divnet_TYPE, gen_divnet_TYPE_SITE, file = "GENUS.Rdata")
###
spp_divnet <- divnet(tax_glom(physeq_insitu, taxrank = "Species"), base = 3)
spp_divnet_label <- divnet(tax_glom(physeq_insitu, taxrank = "Species"), X = "SAMPLELABEL", base = 3)
# Vent vs plume vs background
spp_divnet_TYPE <- divnet(tax_glom(physeq_insitu, taxrank = "Species"), X = "SAMPLETYPE", base = 3)
# location and vent vs plume vs background
spp_divnet_TYPE_SITE <- divnet(tax_glom(physeq_insitu, taxrank = "Species"), X = "TYPE_SITE", base = 3)
save(spp_divnet, spp_divnet_label, spp_divnet_TYPE, spp_divnet_TYPE_SITE, file = "SPECIES.Rdata")Above run on HPC and RData files save so we can look at various levels of species richness.
Function to extract shannon and simpson data from each divnet output.
# ?pivot_longer()
fxn_extract_divet <- function(df){
df$shannon %>% summary %>%
pivot_longer(cols = starts_with("estimate"), names_to = "ESTIMATE-shannon", values_to = "Shannon") %>%
pivot_longer(cols = starts_with("error"), names_to = "ERROR-shannon", values_to = "Shannon-error") %>%
pivot_longer(cols = starts_with("lower"), names_to = "LOWER-shannon", values_to = "Shannon-lower") %>%
pivot_longer(cols = starts_with("upper"), names_to = "UPPER-shannon", values_to = "Shannon-upper") %>%
left_join(df$simpson %>% summary %>%
pivot_longer(cols = starts_with("estimate"), names_to = "ESTIMATE-simpson", values_to = "Simpson") %>%
pivot_longer(cols = starts_with("error"), names_to = "ERROR-simpson", values_to = "Simpson-error") %>%
pivot_longer(cols = starts_with("lower"), names_to = "LOWER-simpson", values_to = "Simpson-lower") %>%
pivot_longer(cols = starts_with("upper"), names_to = "UPPER-simpson", values_to = "Simpson-upper"),
by = c("sample_names" = "sample_names")) %>%
left_join(metadata_insitu %>% rownames_to_column(var = "sample_names")) %>%
select(-sample_names, -ends_with("-simpson"), -ends_with("-shannon"), -starts_with("model."), -starts_with("name.")) %>%
distinct()
}Function to create plots
plot_sampletype <- function(df){
plot_grid(df %>%
# ggplot(aes(x = VENT, y = Shannon)) +
ggplot(aes(x = SAMPLETYPE, y = Shannon, group = SAMPLETYPE)) +
# geom_errorbar(aes(ymin = `Shannon-lower`, ymax = `Shannon-upper`), color = "#525252", width = 0.2) +
geom_point(shape = 21, color = "#525252", size = 2, aes(fill = SAMPLETYPE)) +
# facet_grid(. ~ SITE + SAMPLETYPE + YEAR, space = "free_x", scales = "free_x") +
geom_violin(aes(fill = SAMPLETYPE), color = "#525252", alpha = 0.5, width = 0.5, draw_quantiles = c(0.25, 0.5, 0.75)) +
geom_jitter(shape = 21, color = "#525252", size = 2, aes(fill = SAMPLETYPE)) +
scale_fill_manual(values = c("#ffffff", "#969696", "#252525")) +
# scale_fill_brewer(palette = "Set2") +
theme_linedraw() +
theme(axis.text.y = element_text(size = 14),
axis.text.x = element_blank(),
strip.background = element_blank(),
strip.text = element_text(color = "black"),
legend.position = "none",
axis.ticks.x = element_blank()) +
labs(x = "", y = "Shannon"),
df %>%
# ggplot(aes(x = VENT, y = Simpson)) +
ggplot(aes(x = SAMPLETYPE, y = Shannon, group = SAMPLETYPE)) +
# geom_errorbar(aes(ymin = `Simpson-lower`, ymax = `Simpson-upper`), color = "#525252", width = 0.2) +
# geom_point(shape = 21, color = "#525252", size = 2, aes(fill = SAMPLETYPE)) +
# facet_grid(. ~ SITE + SAMPLETYPE + YEAR, space = "free_x", scales = "free_x") +
geom_violin(aes(fill = SAMPLETYPE), color = "#525252", alpha = 0.5, width = 0.5, draw_quantiles = c(0.25, 0.5, 0.75)) +
geom_jitter(shape = 21, color = "#525252", size = 2, aes(fill = SAMPLETYPE)) +
scale_fill_manual(values = c("#ffffff", "#969696", "#252525")) +
# scale_fill_brewer(palette = "Set2") +
theme_linedraw() +
theme(axis.text.x = element_text(vjust = 1, hjust = 0.5, size = 14),
axis.text = element_text(size = 14),
strip.background = element_blank(),
strip.text = element_blank(),
legend.title = element_blank(),
legend.position = "bottom") +
labs(x = "", y = "Simpson"),
ncol = 1, axis = c("lrt"), align = c("vh"))
}load("data-input/ORDER.Rdata", verbose = T)## Loading objects:
## order_divnet
## order_divnet_label
## order_divnet_TYPE
## order_divnet_TYPE_SITE
order_alpha_18s <- fxn_extract_divet(order_divnet)
order_alpha_label <- fxn_extract_divet(order_divnet_label)
order_alpha_TYPE <- fxn_extract_divet(order_divnet_TYPE)
order_alpha_TYPE_SITE <- fxn_extract_divet(order_divnet_TYPE_SITE)
plot_grid(plot_sampletype(order_alpha_18s),
plot_sampletype(order_alpha_label),
ncol = 2)load("data-input/FAMILY.Rdata", verbose = T)## Loading objects:
## fam_divnet
## fam_divnet_label
## fam_divnet_TYPE
## fam_divnet_TYPE_SITE
fam_alpha_18s <- fxn_extract_divet(fam_divnet)
fam_alpha_label <- fxn_extract_divet(fam_divnet_label)
fam_alpha_TYPE <- fxn_extract_divet(fam_divnet_TYPE)
fam_alpha_TYPE_SITE <- fxn_extract_divet(fam_divnet_TYPE_SITE)
plot_grid(plot_sampletype(fam_alpha_18s),
plot_sampletype(fam_alpha_label),
ncol = 2)load("data-input/GENUS.Rdata", verbose = T)## Loading objects:
## gen_divnet
## gen_divnet_label
## gen_divnet_TYPE
## gen_divnet_TYPE_SITE
gen_alpha_18s <- fxn_extract_divet(gen_divnet)
gen_alpha_label <- fxn_extract_divet(gen_divnet_label)
gen_alpha_TYPE <- fxn_extract_divet(gen_divnet_TYPE)
gen_alpha_TYPE_SITE <- fxn_extract_divet(gen_divnet_TYPE_SITE)
plot_grid(plot_sampletype(gen_alpha_18s),
plot_sampletype(gen_alpha_label),
ncol = 2)plot_sampletype(gen_alpha_label)load("data-input/SPECIES.Rdata", verbose = T)## Loading objects:
## spp_divnet
## spp_divnet_label
## spp_divnet_TYPE
## spp_divnet_TYPE_SITE
spp_alpha_18s <- fxn_extract_divet(spp_divnet)
spp_alpha_label <- fxn_extract_divet(spp_divnet_label)
spp_alpha_TYPE <- fxn_extract_divet(spp_divnet_TYPE)
spp_alpha_TYPE_SITE <- fxn_extract_divet(spp_divnet_TYPE_SITE)
plot_grid(plot_sampletype(spp_alpha_18s),
plot_sampletype(spp_alpha_label),
ncol = 2)plot_sampletype(spp_alpha_18s)testDiversity(spp_divnet_TYPE_SITE, "shannon")## Hypothesis testing:
## p-value for global test: 0
## Estimates Standard Errors p-values
## (Intercept) 2.6026981 0.04265830 0.000
## predictorsAxial_Plume 0.5741397 1.28560932 0.655
## predictorsAxial_Vent 1.1618210 0.08980834 0.000
## predictorsGordaRidge_Background 0.1571173 0.27974388 0.574
## predictorsGordaRidge_Plume 1.0589493 0.27181306 0.000
## predictorsGordaRidge_Vent 0.7711650 0.05643055 0.000
## predictorsPiccard_Background 0.6836154 1.10179528 0.535
## predictorsPiccard_Plume 0.7325748 0.28549380 0.010
## predictorsPiccard_Vent 1.0182122 0.26806101 0.000
## predictorsVonDamm_Background 0.5959967 0.33149807 0.072
## predictorsVonDamm_Plume 1.1301007 0.45120741 0.012
## predictorsVonDamm_Vent -0.4697728 0.15749319 0.003
Import data frames below and format as phyloseq. Subsample to select ASVs that appear in more than 1 sample and have a total of 100 or more sequences. This leaves 2577 total ASVs across 43 samples.
Run below commands on HPC
load("asv-tables-processed-18102021.RData", verbose = T)library(phyloseq)
# library(SpiecEasi)# Select eukaryotes only and create wide format dataframe
insitu_wide_nosingle <- asv_insitu_qc %>%
filter(Domain == "Eukaryota") %>%
filter(!grepl("_Plume001_", SAMPLE)) %>% #removing "near vent background", not relevant in other data sets
select(FeatureID, Taxon, SAMPLE, value) %>%
pivot_wider(names_from = SAMPLE, values_from = value, values_fill = 0) %>%
mutate(PREVALENCE = rowSums(select_if(., is.numeric) > 0),
SEQ_TOTAL = rowSums(select_if(., is.numeric))) %>%
filter(PREVALENCE >= 1) %>%
filter(SEQ_TOTAL >= 100)
#
# ASVs had to appear in more than 1 sample and have at least 100 sequences
length(unique(insitu_wide_nosingle$FeatureID))
length(unique(asv_insitu_qc$FeatureID))
# head(insitu_wide)
insitu_samples <- as.character(colnames(insitu_wide_nosingle %>% select(-Taxon, -FeatureID)))
# make matrices for phyloseq
insitu_tax_matrix <- insitu_wide_nosingle %>%
select(FeatureID, Taxon) %>%
separate(Taxon, c("Domain", "Supergroup",
"Phylum", "Class", "Order",
"Family", "Genus", "Species"), sep = ";") %>%
column_to_rownames(var = "FeatureID") %>%
as.matrix
insitu_asv_matrix <- insitu_wide_nosingle %>%
select(-Taxon) %>%
column_to_rownames(var = "FeatureID") %>%
as.matrix
# Align row names for each matrix
rownames(insitu_tax_matrix) <- row.names(insitu_asv_matrix)
metadata_insitu <- metadata %>%
filter(SAMPLE %in% insitu_samples) %>% # from reformatting df above
select(SAMPLE, VENT, SITE, SAMPLETYPE, YEAR) %>%
unite(SAMPLELABEL, VENT, SITE, SAMPLETYPE, YEAR, sep = "_", remove = FALSE) %>%
unite(TYPE_SITE, SITE, SAMPLETYPE, sep = "_", remove = FALSE)
rownames(metadata_insitu) <- metadata_insitu$SAMPLE
# Import asv and tax matrices
ASV = otu_table(insitu_asv_matrix, taxa_are_rows = TRUE)
TAX = tax_table(insitu_tax_matrix)
phylo_obj <- phyloseq(ASV, TAX)
# Import metadata as sample data in phyloseq
samplenames <- sample_data(metadata_insitu)
## Check
physeq_insituRun SPIEC-EASI with phyloseq object.
# Run spiec easi with glasso
pargs2 <- list(rep.num = 50, seed = 10010, ncores = 10)
spec_glasso_microeuk <- spiec.easi(physeq_insitu, method = 'glasso', lambda.min.ratio=1e-2, nlambda=20,pulsar.params=pargs2)
# save(spec_glasso_microeuk, file = "spiec-easi-output-03-12-21.RData")Isolate ASV-ASV pairs of interest
# load("spiec-easi-output-03-12-21.RData", verbose = T) # almost 5GB file!
getStability(spec_glasso_microeuk) # Target == 0.05
# [1] 0.03827056
sum(getRefit(spec_glasso_microeuk))/2
# [1] 45904.5
# spec_glasso_microeuk
# Pulsar-selected refit of sparseiCov
# Path length: 20
# Graph dim: 2577
# Criterion:
# stars... sparsity 0.0138Extract weighted matrix
# se_beta <- as.matrix(symBeta(getOptBeta(spec_glasso_microeuk)))
# df_beta <- as.data.frame(se_beta)
# Extract weight information
glasso_weight <- cov2cor(as.matrix(getOptCov(spec_glasso_microeuk)))
colnames(glasso_weight) <- rownames(glasso_weight)# <- colnames(Networ_taxa_DF_WideMat) #here i may be able to give the verticies the taxa names if i feed it the vector of names from the levels.
weighted_adj_mat <- glasso_weight*getRefit(spec_glasso_microeuk)
df_weighted <- as.data.frame(as.matrix(weighted_adj_mat))
# Assign column and row names - from original glasso output matrix data
colnames(df_weighted) <- colnames(spec_glasso_microeuk$est$data)
row.names(df_weighted) <- colnames(spec_glasso_microeuk$est$data)Work with weighted dataframe
key <- insitu_asv_wClass %>%
select(FeatureID, Taxon, Domain:Species, CLASS, SITE_CLASS) %>%
distinct()
# head(key)
df_spieceasi <- df_weighted %>%
rownames_to_column(var = "sideA") %>%
pivot_longer(cols = -sideA, names_to = "sideB") %>%
left_join(key, by = c(sideA = "FeatureID")) %>%
left_join(key, by = c(sideB = "FeatureID"), suffix = c("_sideA", "_sideB")) %>%
distinct()
# 6640929 total interactions
## 6 million edged?
df_spieceasi_filtered <- df_spieceasi %>%
filter(abs(value) > 0.01) %>%
mutate(Interaction = case_when(
value < 0 ~ "negative",
value > 0 ~ "positive"
))
# Leaves 91,288 interactions
## Interaction type
# negative positive
# 3363 87925
save(df_spieceasi_filtered, file = "filtered-spieceasi-result-08122021.RData") load("data-input/filtered-spieceasi-result-08122021.RData", verbose = TRUE)## Loading objects:
## df_spieceasi_filtered
H0: the majority of protist-protist pairs will reveal host-parasite interactions, and then predator-prey.
Questions to ask regarding the SPIEC EASI results. - What is the overall taxonomic composition of negative and positive co-occurring ASVs? - What percentage of putative interactions include likely parasitic protists?
Format, get summary stats from network analyss.
head(df_spieceasi_filtered)## # A tibble: 6 × 26
## sideA sideB value Taxon_sideA Domain_sideA Supergroup_sideA Phylum_sideA
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr>
## 1 000ee3… 04132… 0.449 Eukaryota;Alv… Eukaryota Alveolata Ciliophora
## 2 000ee3… 07696… 0.395 Eukaryota;Alv… Eukaryota Alveolata Ciliophora
## 3 000ee3… 15d82… 0.449 Eukaryota;Alv… Eukaryota Alveolata Ciliophora
## 4 000ee3… 1849e… 0.432 Eukaryota;Alv… Eukaryota Alveolata Ciliophora
## 5 000ee3… 1a9bf… 0.443 Eukaryota;Alv… Eukaryota Alveolata Ciliophora
## 6 000ee3… 1c511… 0.416 Eukaryota;Alv… Eukaryota Alveolata Ciliophora
## # … with 19 more variables: Class_sideA <chr>, Order_sideA <chr>,
## # Family_sideA <chr>, Genus_sideA <chr>, Species_sideA <chr>,
## # CLASS_sideA <chr>, SITE_CLASS_sideA <chr>, Taxon_sideB <chr>,
## # Domain_sideB <chr>, Supergroup_sideB <chr>, Phylum_sideB <chr>,
## # Class_sideB <chr>, Order_sideB <chr>, Family_sideB <chr>,
## # Genus_sideB <chr>, Species_sideB <chr>, CLASS_sideB <chr>,
## # SITE_CLASS_sideB <chr>, Interaction <chr>
spieceasi_rm_reps <- df_spieceasi_filtered %>%
mutate(TMP_ASV_REP = purrr::map2_chr(sideA, sideB, ~toString(sort(c(.x, .y))))) %>%
select(TMP_ASV_REP, value, Interaction) %>%
group_by(TMP_ASV_REP, value, Interaction) %>%
distinct() %>%
ungroup() %>%
separate(TMP_ASV_REP, c("sideA", "sideB"), sep = ", ") %>%
left_join((select(df_spieceasi_filtered, ends_with("sideA")) %>% distinct())) %>%
left_join((select(df_spieceasi_filtered, ends_with("sideB")) %>% distinct()))
head(spieceasi_rm_reps)## # A tibble: 6 × 26
## sideA sideB value Interaction Taxon_sideA Domain_sideA Supergroup_sideA
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr>
## 1 000ee3… 041329… 0.449 positive Eukaryota;Alv… Eukaryota Alveolata
## 2 000ee3… 076962… 0.395 positive Eukaryota;Alv… Eukaryota Alveolata
## 3 000ee3… 15d825… 0.449 positive Eukaryota;Alv… Eukaryota Alveolata
## 4 000ee3… 1849ed… 0.432 positive Eukaryota;Alv… Eukaryota Alveolata
## 5 000ee3… 1a9bf2… 0.443 positive Eukaryota;Alv… Eukaryota Alveolata
## 6 000ee3… 1c511b… 0.416 positive Eukaryota;Alv… Eukaryota Alveolata
## # … with 19 more variables: Phylum_sideA <chr>, Class_sideA <chr>,
## # Order_sideA <chr>, Family_sideA <chr>, Genus_sideA <chr>,
## # Species_sideA <chr>, CLASS_sideA <chr>, SITE_CLASS_sideA <chr>,
## # Taxon_sideB <chr>, Domain_sideB <chr>, Supergroup_sideB <chr>,
## # Phylum_sideB <chr>, Class_sideB <chr>, Order_sideB <chr>,
## # Family_sideB <chr>, Genus_sideB <chr>, Species_sideB <chr>,
## # CLASS_sideB <chr>, SITE_CLASS_sideB <chr>
Look at highest percentage of ASV-ASV pairs by various categories.
# Get stats
totaloccur <- dim(spieceasi_rm_reps)[1]
spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(SITE_CLASS_joined, SITE_CLASS_sideA, SITE_CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
group_by(CLASS_joined, Interaction) %>%
summarise(COUNT = n(),
PERC = 100*(COUNT/totaloccur)) %>%
arrange(desc(PERC))## # A tibble: 63 × 4
## # Groups: CLASS_joined [43]
## CLASS_joined Interaction COUNT PERC
## <chr> <chr> <int> <dbl>
## 1 Vent only-Vent only positive 16727 36.6
## 2 Vent, plume, & background-Vent, plume, & background positive 7076 15.5
## 3 Vent only-Vent & background positive 1518 3.32
## 4 Vent & background-Vent only positive 1435 3.14
## 5 Vent only-Vent, plume, & background positive 1319 2.89
## 6 Vent, plume, & background-Vent only positive 1180 2.58
## 7 Plume only-Plume only positive 1099 2.41
## 8 Vent & plume-Vent only positive 1090 2.39
## 9 Vent only-Vent & plume positive 932 2.04
## 10 Vent & plume-Vent, plume, & background positive 897 1.96
## # … with 53 more rows
ASV-ASV pairs were primarily among ASVs classified as ‘Vent only’ - both ASVs were resident. 36%
Secondly, 15% of the ASV pairs were from ASVs specifically found in all sample types.
Again, mostly all positive. The highest occurence of negative interactions were between Vent only- Vent, plume, and background.
asv_asv <- c("Vent only-Vent only", "Vent, plume, & background-Vent, plume, & background")
# Get stats
totaloccur <- dim(spieceasi_rm_reps)[1]
spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(SITE_CLASS_joined, SITE_CLASS_sideA, SITE_CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(CLASS_joined %in% asv_asv) %>%
group_by(CLASS_joined) %>%
mutate(TOTALCOUNT = n()) %>%
group_by(CLASS_joined, PHYLUM_joined, Interaction, TOTALCOUNT) %>%
summarise(COUNT = n(),
PERC = 100*(COUNT/TOTALCOUNT)) %>%
ungroup() %>%
arrange(desc(PERC)) %>%
distinct() %>%
select(CLASS_joined, PHYLUM_joined, PERC, Interaction) %>%
pivot_wider(names_from = CLASS_joined, values_from = PERC)## # A tibble: 721 × 4
## PHYLUM_joined Interaction `Vent only-Vent … `Vent, plume, & …
## <chr> <chr> <dbl> <dbl>
## 1 Ciliophora-Ciliophora positive 15.0 2.80
## 2 Dinoflagellata-Dinoflagellata positive 2.95 12.6
## 3 Dinoflagellata-Radiolaria positive 0.837 5.56
## 4 Radiolaria-Dinoflagellata positive 0.705 5.41
## 5 Radiolaria-Radiolaria positive 0.209 3.74
## 6 Dinoflagellata-Ciliophora positive 3.34 3.39
## 7 Ciliophora-Dinoflagellata positive 2.86 2.87
## 8 Cercozoa-Ciliophora positive 2.43 0.0519
## 9 Ciliophora-Cercozoa positive 2.20 0.182
## 10 Haptophyta-Haptophyta positive 1.97 0.441
## # … with 711 more rows
Within ‘Vent only-Vent only’ ASV pairs, almost 15% were among ciliates (ciliate-ciliate), while for the ‘Vent, plume, & backgroun’ ASV pairs, almost 13% were between dinoflagellates.
Isolate the ASV-ASV pairs that appeared most frequently. These include ciliates, dinoflagellates, and radiolaria within the resident and cosmopolitan (the latter includes ASVs that appears at least once ALL sample types).
rad_dino <- c("Dinoflagellata-Radiolaria", "Radiolaria-Dinoflagellata", "Radiolaria-Radiolaria")
ciliate_ciliate <- spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(SITE_CLASS_joined, SITE_CLASS_sideA, SITE_CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(CLASS_joined %in% asv_asv) %>%
filter(PHYLUM_joined == "Ciliophora-Ciliophora")
dino_dino <- spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(SITE_CLASS_joined, SITE_CLASS_sideA, SITE_CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(CLASS_joined %in% asv_asv) %>%
filter(PHYLUM_joined == "Dinoflagellata-Dinoflagellata")
rad_dino <- spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(SITE_CLASS_joined, SITE_CLASS_sideA, SITE_CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(CLASS_joined %in% asv_asv) %>%
filter(PHYLUM_joined %in% rad_dino)Importing data from Ramond et al. 2019 - https://www.seanoe.org/data/00405/51662/
fxn <- read.delim(file = "data-input/fxntraits-ramond.csv", sep = ";")
library(fuzzyjoin)
fxn_formatted <- fxn %>%
mutate_at(vars(Lineage), funs(str_replace_all(., pattern = "\\|", replacement = ";"))) %>%
select(Taxon = Lineage, SizeMin, SizeMax, Cover, Shape, Spicule, Symmetry, Polarity, Colony, Motility, Chloroplast, Plast_Origin, Ingestion, Behaviour, Mutualistic_Host, starts_with("Symbion"), ends_with("_Specialisation"), Mucilage, Chemical_Signal, Nutrient_Afinity, Oxygen_Tolerance, Salinity) %>%
separate(Taxon, c("Domain", "Supergroup_0", "Supergroup",
"Phylum", "Class", "Order",
"Family", "Genus", "Species"), sep = ";", remove = FALSE)## Warning: `funs()` was deprecated in dplyr 0.8.0.
## Please use a list of either functions or lambdas:
##
## # Simple named list:
## list(mean = mean, median = median)
##
## # Auto named with `tibble::lst()`:
## tibble::lst(mean, median)
##
## # Using lambdas
## list(~ mean(., trim = .2), ~ median(., na.rm = TRUE))
## This warning is displayed once every 8 hours.
## Call `lifecycle::last_lifecycle_warnings()` to see where this warning was generated.
## Warning: Expected 9 pieces. Additional pieces discarded in 457 rows [173, 174,
## 175, 178, 179, 192, 194, 195, 196, 198, 200, 201, 202, 203, 204, 206, 207, 208,
## 210, 211, ...].
## Warning: Expected 9 pieces. Missing pieces filled with `NA` in 980 rows [1, 2,
## 3, 4, 5, 6, 7, 8, 9, 10, 11, 13, 14, 15, 16, 17, 18, 19, 20, 21, ...].
# unique(fxn_formatted$Supergroup)Imported curated dataset
fxn_curated <- read.csv("data-input/curated_ramond_subset.csv")
fxn_summarised <- fxn_curated %>%
separate(Taxon, c("Domain", "Supergroup_0", "Supergroup",
"Phylum", "Class", "Order",
"Family", "Genus", "Species"), sep = ";", remove = FALSE) %>%
filter(!is.na(Order)) %>%
filter(!is.na(Family)) %>%
unite(TAXONOMY, Supergroup_0, Supergroup, Phylum, Class, Order, sep = ";") %>%
unite(TAXONOMY_RESOLUTION, Family, Genus, Species, sep = ";") %>%
group_by(TAXONOMY) %>%
summarize(Species_col = paste(unique(TAXONOMY_RESOLUTION), collapse = ", "),
over_col = paste(unique(Cover), collapse = ", "),
Shape_col = paste(unique(Shape), collapse = ", "),
Motility_col = paste(unique(Motility), collapse = ", "),
Ingestion_col = paste(unique(Ingestion), collapse = ", "),
Behaviour_col = paste(unique(Behaviour), collapse = ", "),
Mutualistic_Host_col = paste(unique(Mutualistic_Host), collapse = ", "),
Symbiontic_col = paste(unique(Symbiontic), collapse = ", "),
Host_Specialisation_col = paste(unique(Host_Specialisation), collapse = ", "),
Prey_Specialisation_col = paste(unique(Prey_Specialisation), collapse = ", "),
Oxygen_Tolerance_col = paste(unique(Oxygen_Tolerance), collapse = ", ")
)## Warning: Expected 9 pieces. Additional pieces discarded in 72 rows [14, 16, 19,
## 20, 21, 22, 24, 26, 27, 29, 30, 32, 33, 34, 36, 37, 39, 40, 41, 42, ...].
## Warning: Expected 9 pieces. Missing pieces filled with `NA` in 196 rows [1, 2,
## 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 15, 17, 23, 28, 31, 35, 44, ...].
dim(fxn_summarised)## [1] 84 12
# View(fxn_summarised)
# write_delim(fxn_summarised, file = "functional_trait_summary.txt", delim = "\t")Create managable databases to text search for functional traits among the ASV-ASV pairs of interest.
ciliate_unique_meta <- fxn_formatted %>%
filter(Phylum == "Ciliophora") %>%
group_by(Supergroup, Phylum, Class, Order, Family, Genus) %>%
summarize(Species_col = str_c(Species, collapse = ", "),
Cover_col = str_c(Cover, collapse = ", "),
Shape_col = str_c(Shape, collapse = ", "),
Motility_col = str_c(Motility, collapse = ", "),
Ingestion_col = str_c(Ingestion, collapse = ", "),
Behaviour_col = str_c(Behaviour, collapse = ", "),
Mutualistic_Host_col = str_c(Mutualistic_Host, collapse = ", "),
Symbiontic_col = str_c(Symbiontic, collapse = ", "),
Host_Specialisation_col = str_c(Host_Specialisation, collapse = ", "),
Prey_Specialisation_col = str_c(Prey_Specialisation, collapse = ", "),
Oxygen_Tolerance_col = str_c(Oxygen_Tolerance, collapse = ", ")
)
dino_unique_meta <- fxn_formatted %>%
filter(Phylum == "Myzozoa") %>%
group_by(Supergroup, Phylum, Class, Order, Family, Genus) %>%
summarize(Species_col = str_c(Species, collapse = ", "),
Cover_col = str_c(Cover, collapse = ", "),
Shape_col = str_c(Shape, collapse = ", "),
Motility_col = str_c(Motility, collapse = ", "),
Ingestion_col = str_c(Ingestion, collapse = ", "),
Behaviour_col = str_c(Behaviour, collapse = ", "),
Mutualistic_Host_col = str_c(Mutualistic_Host, collapse = ", "),
Symbiontic_col = str_c(Symbiontic, collapse = ", "),
Host_Specialisation_col = str_c(Host_Specialisation, collapse = ", "),
Prey_Specialisation_col = str_c(Prey_Specialisation, collapse = ", "),
Oxygen_Tolerance_col = str_c(Oxygen_Tolerance, collapse = ", ")
)
ret_unique_meta <- fxn_formatted %>%
filter(Phylum == "Retaria") %>%
group_by(Supergroup, Phylum, Class, Order, Family, Genus) %>%
summarize(Species_col = str_c(Species, collapse = ", "),
Cover_col = str_c(Cover, collapse = ", "),
Shape_col = str_c(Shape, collapse = ", "),
Motility_col = str_c(Motility, collapse = ", "),
Ingestion_col = str_c(Ingestion, collapse = ", "),
Behaviour_col = str_c(Behaviour, collapse = ", "),
Mutualistic_Host_col = str_c(Mutualistic_Host, collapse = ", "),
Symbiontic_col = str_c(Symbiontic, collapse = ", "),
Host_Specialisation_col = str_c(Host_Specialisation, collapse = ", "),
Prey_Specialisation_col = str_c(Prey_Specialisation, collapse = ", "),
Oxygen_Tolerance_col = str_c(Oxygen_Tolerance, collapse = ", ")
)
# dim(ret_unique_meta)
# dim(dino_unique_meta)
# dim(ciliate_unique_meta)
# View(ret_unique_meta)
# View(dino_unique_meta)
# View(ciliate_unique_meta)Bar plot of total interactions, highlight if % is over 1-2% and what is the ASV distribution classification
Distribution of Spiec Easi output, histogram.
# head(spieceasi_rm_reps)
hist(spieceasi_rm_reps$value)Create series of barplots that show breakdown of significantly co-occurring ASVs.
# dim(spieceasi_rm_reps)
total_num <- dim(spieceasi_rm_reps)[1]
total_num## [1] 45659
asv_asv <- c("Vent only-Vent only", "Vent, plume, & background-Vent, plume, & background")
# total_num
# svg("spieceasi-bar-base.svg", w=9, h=4)
plot_grid(spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
# unite(SITE_CLASS_joined, SITE_CLASS_sideA, SITE_CLASS_sideB, sep = "-") %>%
# unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-")
group_by(CLASS_joined) %>%
summarise(COUNT = n(),
PERC = 100*(COUNT/(dim(spieceasi_rm_reps)[1]))) %>%
mutate(CLASSIFICATION = case_when(
PERC >= 10 ~ CLASS_joined,
PERC < 10 ~ "Less than 10%"
)) %>%
ungroup() %>%
group_by(CLASSIFICATION) %>%
summarise(PERC_SUM = sum(PERC)) %>%
ggplot(aes(x = 1, y = PERC_SUM, fill = CLASSIFICATION)) +
geom_bar(stat = "identity", width = 0.2, color = "white") +
coord_flip() +
# scale_y_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#FFFA78","#F58F52", "#EB6525")) +
theme_void() +
theme(axis.text.x = element_text(color = "black", size = 12),
axis.line.x = element_line(color = "black"),
axis.ticks.x = element_line(color = "black"),
legend.title = element_blank()),
#
#
spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
group_by(Interaction) %>%
summarise(COUNT = n(),
PERC = 100*(COUNT/(dim(spieceasi_rm_reps)[1]))) %>%
ungroup() %>%
group_by(Interaction) %>%
summarise(PERC_SUM = sum(PERC)) %>%
ggplot(aes(x = 1, y = PERC_SUM, fill = Interaction)) +
geom_bar(stat = "identity", width = 0.2, color = "white") +
coord_flip() +
# scale_x_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#5B5B8A", "#C67B33")) +
theme_void() +
theme(axis.text.x = element_text(color = "black", size = 12),
axis.line.x = element_line(color = "black"),
axis.ticks.x = element_line(color = "black"),
legend.title = element_blank()),
#
#
spieceasi_rm_reps %>%
# unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
group_by(PHYLUM_joined) %>%
summarise(COUNT = n(),
PERC = 100*(COUNT/(dim(spieceasi_rm_reps)[1]))) %>%
mutate(CLASSIFICATION = case_when(
PERC >= 2 ~ PHYLUM_joined,
PERC < 2 ~ "Less than 2%"
)) %>%
ungroup() %>%
group_by(CLASSIFICATION) %>%
summarise(PERC_SUM = sum(PERC)) %>%
ggplot(aes(x = 1, y = PERC_SUM, fill = CLASSIFICATION)) +
geom_bar(stat = "identity", width = 0.2, color = "white") +
coord_flip() +
# scale_y_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#6FA9E4", "#A4723F","#577383", "#F8F5E5", "#D1AB8A", "#FBDB9A","#5C5E5E", "#A12531", "#59372B")) +
theme_void() +
theme(axis.text.x = element_text(color = "black", size = 12),
axis.line.x = element_line(color = "black"),
axis.ticks.x = element_line(color = "black"),
legend.title = element_blank()),
#
spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
filter(CLASS_joined %in% asv_asv) %>%
group_by(CLASS_joined) %>%
mutate(TOTAL_COUNT = n()) %>%
ungroup() %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
group_by(PHYLUM_joined, CLASS_joined) %>%
summarise(COUNT = n(),
PERC = 100*(COUNT/TOTAL_COUNT)) %>%
mutate(CLASSIFICATION = case_when(
PERC >= 10 ~ PHYLUM_joined,
PERC < 10 ~ "Less than 2%"
)) %>%
group_by(CLASS_joined, CLASSIFICATION) %>%
summarise(PERC_SUM = sum(PERC)) %>%
ggplot(aes(x = CLASS_joined, y = PERC_SUM, fill = CLASSIFICATION)) +
geom_bar(stat = "identity", position = "fill", width = 0.6, color = "white") +
coord_flip() +
# scale_x_continuous(expand = c(0,0)) +
scale_fill_manual(values = c("#B24236","#fed976","#5A7356")) +
theme_void() +
theme(axis.text.x = element_text(color = "black", size = 12),
axis.line.x = element_line(color = "black"),
axis.ticks.x = element_line(color = "black"),
legend.title = element_blank()),
ncol = 1, align = c("vh"), axis = c("lr"))# dev.off()
# ?plot_grid()Because dinos, ciliates, and radiolaria were the most common. How many ASV-ASV pairs were they a part of?
highlighted <- c("Ciliophora-Ciliophora", "Dinoflagellata-Dinoflagellata", "Radiolaria-Radiolaria")
connect_list <- c("Cercozoa", "Ciliophora", "Dinoflagellata", "Haptophyta", "Opalozoa", "Radiolaria")
dino_cili_rad <- spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(grepl("Ciliophora", PHYLUM_joined)) %>%
mutate(CONNECT = case_when(
Phylum_sideA != "Ciliophora" ~ Phylum_sideA,
Phylum_sideB != "Ciliophora" ~ Phylum_sideB,
PHYLUM_joined == "Ciliophora-Ciliophora" ~ "Ciliophora"
)) %>%
group_by(CONNECT) %>%
summarise(COUNT = n()) %>%
add_column(PRIMARY = "Ciliophora") %>%
rbind(spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(grepl("Dinoflagellata", PHYLUM_joined)) %>%
mutate(CONNECT = case_when(
Phylum_sideA != "Dinoflagellata" ~ Phylum_sideA,
Phylum_sideB != "Dinoflagellata" ~ Phylum_sideB,
PHYLUM_joined == "Dinoflagellata-Dinoflagellata" ~ "Dinoflagellata"
)) %>%
group_by(CONNECT) %>%
summarise(COUNT = n()) %>%
add_column(PRIMARY = "Dinoflagellata")) %>%
rbind(spieceasi_rm_reps %>%
unite(CLASS_joined, CLASS_sideA, CLASS_sideB, sep = "-") %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(grepl("Radiolaria", PHYLUM_joined)) %>%
mutate(CONNECT = case_when(
Phylum_sideA != "Radiolaria" ~ Phylum_sideA,
Phylum_sideB != "Radiolaria" ~ Phylum_sideB,
PHYLUM_joined == "Radiolaria-Radiolaria" ~ "Radiolaria"
)) %>%
group_by(CONNECT) %>%
summarise(COUNT = n()) %>%
add_column(PRIMARY = "Radiolaria")) %>%
unite(TMP, CONNECT, PRIMARY, sep = "-", remove = FALSE) %>%
mutate(CAT_BUBBLE = case_when(
TMP %in% highlighted ~ PRIMARY,
CONNECT %in% connect_list ~ "NOTED"
)) %>% select(-TMP)
# unique(dino_cili_rad$CAT_BUBBLE)
# unique(dino_cili_rad$PRIMARY)
# length(unique(dino_cili_rad$CONNECT))
# dim(dino_cili_rad)
# head(dino_cili_rad)ggplot(dino_cili_rad, aes(x = PRIMARY, y = CONNECT)) +
geom_point(aes(size = COUNT, fill = CAT_BUBBLE),
color = "black", shape = 21, stroke = 1) +
coord_flip() +
theme_linedraw() +
theme(axis.title = element_blank(),
axis.text.x = element_text(angle = 45, hjust = 1, vjust = 1),
panel.grid = element_blank(),
axis.ticks = element_blank(),
legend.title = element_blank()) +
scale_fill_manual(values = c("#6FA9E4", "#F8F5E5", "#e31a1c", "#6a51a3", "#000000"))# scale_fill_manual(values = c("#6FA9E4", "#A4723F","#577383", "#F8F5E5", "#D1AB8A", "#FBDB9A","#5C5E5E", "#A12531", "#59372B"))
# scale_fill_manual(values = c("#B24236","#fed976","#5A7356"))Isolate associations with ciliates
# head(ciliate_ciliate)
# table(ciliate_ciliate$SITE_CLASS_joined)
# table(ciliate_ciliate)
ciliate_ciliate %>%
filter(CLASS_joined == "Vent only-Vent only") %>%
# filter(!is.na(Phylum_sideA) | !is.na(Phylum_sideB)) %>%
ggplot(aes(x = Taxon_sideA, y = Taxon_sideB, fill = value)) +
geom_tile(color = "black") +
scale_fill_gradient(low = "#bfd3e6", high = "#810f7c") +
theme_linedraw() +
facet_grid(Class_sideB + Order_sideB ~ Class_sideA + Order_sideA, space = "free", scales = "free") +
theme(axis.text = element_blank(),
panel.grid.minor = element_blank(),
strip.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5),
strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5),
strip.text = element_text(color = "black", face = "bold"),
strip.background = element_blank()) Isolate functional traits from these groups of ciliates
order <- c("Plagiopylea", "Nassophorea", "Litostomatea")
family <- c("Scuticociliatia", "Euplotia", "Suctoria", "Peritrichia")
genus <- c("Strombidiidae")Tile plot of vent-only (resident) ciliate-ciliate ASV co-occurrences.
# head(ciliate_ciliate)
# hist(ciliate_ciliate$value)
ciliate_ciliate %>%
filter(value >= 0.4) %>%
select(starts_with(c("Class_", "Order_")), PHYLUM_joined) %>%
select(-CLASS_joined) %>%
# select(Taxon_sideA, Taxon_sideB, PHYLUM_joined) %>%
unite(SIDEA, Class_sideA, Order_sideA, sep = ";", remove = FALSE) %>%
unite(SIDEB, Class_sideB, Order_sideB, sep = ";", remove = FALSE) %>%
group_by(SIDEA, SIDEB, Class_sideA, Class_sideB) %>%
summarise(COUNT = n()) %>%
ggplot(aes(x = SIDEA, y = SIDEB, fill = COUNT)) +
geom_tile(color = "black") +
scale_fill_gradient(low = "#bfd3e6", high = "#810f7c") +
theme_linedraw() +
facet_grid(Class_sideB ~ Class_sideA, space = "free", scales = "free") +
theme(panel.grid.minor = element_blank(),
strip.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5),
strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5),
strip.text = element_text(color = "black", face = "bold"),
strip.background = element_blank(),
axis.title = element_blank(),
axis.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5))dino_dino %>%
filter(CLASS_joined == "Vent only-Vent only") %>%
# filter(!is.na(Phylum_sideA) | !is.na(Phylum_sideB)) %>%
ggplot(aes(x = Taxon_sideA, y = Taxon_sideB, fill = value)) +
geom_tile(color = "black") +
scale_fill_gradient(low = "#bfd3e6", high = "#810f7c") +
theme_linedraw() +
facet_grid(Class_sideB + Order_sideB ~ Class_sideA + Order_sideA, space = "free", scales = "free") +
theme(axis.text = element_blank(),
panel.grid.minor = element_blank(),
strip.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5),
strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5),
strip.text = element_text(color = "black", face = "bold"),
strip.background = element_blank()) Dinos and others Get stats on Ciliate-other ASV pairs for a table
rad_dino %>%
filter(CLASS_joined == "Vent only-Vent only") %>%
# filter(!is.na(Phylum_sideA) | !is.na(Phylum_sideB)) %>%
ggplot(aes(x = Taxon_sideA, y = Taxon_sideB, fill = value)) +
geom_tile(color = "black") +
scale_fill_gradient(low = "#bfd3e6", high = "#810f7c") +
theme_linedraw() +
facet_grid(Class_sideB + Order_sideB ~ Class_sideA + Order_sideA, space = "free", scales = "free") +
theme(axis.text = element_blank(),
panel.grid.minor = element_blank(),
strip.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5),
strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5),
strip.text = element_text(color = "black", face = "bold"),
strip.background = element_blank()) Retaria and others Get stats on Ciliate-other ASV pairs for a table
head(spieceasi_rm_reps)## # A tibble: 6 × 26
## sideA sideB value Interaction Taxon_sideA Domain_sideA Supergroup_sideA
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr>
## 1 000ee3… 041329… 0.449 positive Eukaryota;Alv… Eukaryota Alveolata
## 2 000ee3… 076962… 0.395 positive Eukaryota;Alv… Eukaryota Alveolata
## 3 000ee3… 15d825… 0.449 positive Eukaryota;Alv… Eukaryota Alveolata
## 4 000ee3… 1849ed… 0.432 positive Eukaryota;Alv… Eukaryota Alveolata
## 5 000ee3… 1a9bf2… 0.443 positive Eukaryota;Alv… Eukaryota Alveolata
## 6 000ee3… 1c511b… 0.416 positive Eukaryota;Alv… Eukaryota Alveolata
## # … with 19 more variables: Phylum_sideA <chr>, Class_sideA <chr>,
## # Order_sideA <chr>, Family_sideA <chr>, Genus_sideA <chr>,
## # Species_sideA <chr>, CLASS_sideA <chr>, SITE_CLASS_sideA <chr>,
## # Taxon_sideB <chr>, Domain_sideB <chr>, Supergroup_sideB <chr>,
## # Phylum_sideB <chr>, Class_sideB <chr>, Order_sideB <chr>,
## # Family_sideB <chr>, Genus_sideB <chr>, Species_sideB <chr>,
## # CLASS_sideB <chr>, SITE_CLASS_sideB <chr>
# unique(df_spieceasi_filtered$Class_sideA)
# rm <- c(NA, "Metazoa", "")
# Filter to remove ASVs not classified to the Phylum level at least
# compare_inter <- df_spieceasi_filtered %>%
# filter(!(Phylum_sideA %in% rm | Phylum_sideB %in% rm)) %>%
# select()
#
# compare_inter <- select(df_spieceasi_filtered, FeatureID = sideA, Taxon = Taxon_sideA) %>%
# rbind(select(df_spieceasi_filtered, FeatureID = sideB, Taxon = Taxon_sideB)) %>%
# distinct()
#
# compare_fxn <- fxn_formatted
# write_delim(compare_inter, file = "interactions_unique_IDs.txt", delim = "\t")
# write_delim(fxn_formatted, file = "ramond_IDs.txt", delim = "\t")Create tile plot with highly significantly co-occurring ASVs - helping to narrow down what is discussed in text.
head(spieceasi_rm_reps)## # A tibble: 6 × 26
## sideA sideB value Interaction Taxon_sideA Domain_sideA Supergroup_sideA
## <chr> <chr> <dbl> <chr> <chr> <chr> <chr>
## 1 000ee3… 041329… 0.449 positive Eukaryota;Alv… Eukaryota Alveolata
## 2 000ee3… 076962… 0.395 positive Eukaryota;Alv… Eukaryota Alveolata
## 3 000ee3… 15d825… 0.449 positive Eukaryota;Alv… Eukaryota Alveolata
## 4 000ee3… 1849ed… 0.432 positive Eukaryota;Alv… Eukaryota Alveolata
## 5 000ee3… 1a9bf2… 0.443 positive Eukaryota;Alv… Eukaryota Alveolata
## 6 000ee3… 1c511b… 0.416 positive Eukaryota;Alv… Eukaryota Alveolata
## # … with 19 more variables: Phylum_sideA <chr>, Class_sideA <chr>,
## # Order_sideA <chr>, Family_sideA <chr>, Genus_sideA <chr>,
## # Species_sideA <chr>, CLASS_sideA <chr>, SITE_CLASS_sideA <chr>,
## # Taxon_sideB <chr>, Domain_sideB <chr>, Supergroup_sideB <chr>,
## # Phylum_sideB <chr>, Class_sideB <chr>, Order_sideB <chr>,
## # Family_sideB <chr>, Genus_sideB <chr>, Species_sideB <chr>,
## # CLASS_sideB <chr>, SITE_CLASS_sideB <chr>
sig_0.4 <- spieceasi_rm_reps %>%
filter(abs(value) >= 0.4) %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-")
dim(sig_0.4)## [1] 7527 27
# head(sig_0.4)
# write_delim(sig_0.4, file = "significant_interactions_by04.txt", delim = "\t")
# View(select(sig_0.4, starts_with("Taxon")) %>%
# distinct())Function to isolate highest total number of interactions
check_tax_interact <- function(tax){
tmp <- spieceasi_rm_reps %>%
filter(abs(value) >= 0.4) %>%
unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
filter(grepl(tax, PHYLUM_joined)) %>%
select(starts_with("Taxon"), PHYLUM_joined) %>%
# filter(grepl(compare1, PHYLUM_joined)) %>%
distinct()
View(tmp)
table(sort(tmp$PHYLUM_joined))
}
# check_tax_interact("Ciliophora")# spieceasi_rm_reps %>%
# filter(abs(value) >= 0.4) %>%
# unite(PHYLUM_joined, Phylum_sideA, Phylum_sideB, remove = FALSE, sep = "-") %>%
# # filter(grepl("Ciliophora", PHYLUM_joined)) %>%
# select(starts_with(c("Phylum_", "Class_", "Order_")), PHYLUM_joined) %>%
# # select(Taxon_sideA, Taxon_sideB, PHYLUM_joined) %>%
# unite(SIDEA, Class_sideA, Order_sideA, sep = ";", remove = FALSE) %>%
# unite(SIDEB, Class_sideB, Order_sideB, sep = ";", remove = FALSE) %>%
# group_by(SIDEA, SIDEB, Phylum_sideA, Phylum_sideB) %>%
# summarise(COUNT = n()) %>%
# ggplot(aes(x = SIDEA, y = SIDEB, fill = COUNT)) +
# geom_tile(color = "black") +
# scale_fill_gradient(low = "#bfd3e6", high = "#810f7c") +
# theme_linedraw() +
# facet_grid(Phylum_sideB ~ Phylum_sideA, space = "free", scales = "free") +
# theme(panel.grid.minor = element_blank(),
# strip.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5),
# strip.text.y = element_text(angle = 0, hjust = 0, vjust = 0.5),
# strip.text = element_text(color = "black", face = "bold"),
# strip.background = element_blank(),
# axis.title = element_blank(),
# axis.text.x = element_text(angle = 90, hjust = 0, vjust = 0.5))Import phyloseq-saved RObjects.
# library(tidyverse); library(phyloseq); library(compositions); library(vegan)
load("phyloseq-objs-180122.RData", verbose = TRUE)## Loading objects:
## physeq_insitu
## metadata_insitu
Isolate ASV count table using phyloseq commands and perform a CLR transformation.
# Extract phyloseq object & CLR transform
count_table_clr <- compositions::clr(otu_table(physeq_insitu))Check all samples considered and estimate distance matrix (Euclidean)
# transpose and make dist matrix
sample_data(physeq_insitu)## SAMPLE
## GordaRidge_Vent039_SUPRS1_2019 GordaRidge_Vent039_SUPRS1_2019
## GordaRidge_Vent040_SUPRS2_2019 GordaRidge_Vent040_SUPRS2_2019
## GordaRidge_BSW081_sterivex_2019 GordaRidge_BSW081_sterivex_2019
## Axial_Boca_FS905_2013 Axial_Boca_FS905_2013
## Axial_Skadi_FS910_2014 Axial_Skadi_FS910_2014
## GordaRidge_BSW056_sterivex_2019_REPb GordaRidge_BSW056_sterivex_2019_REPb
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021
## Axial_N3Area_FS898_2013 Axial_N3Area_FS898_2013
## GordaRidge_Vent088_SUPRS3_2019 GordaRidge_Vent088_SUPRS3_2019
## GordaRidge_Plume036_sterivex_2019_REPb GordaRidge_Plume036_sterivex_2019_REPb
## GordaRidge_Plume096_sterivex_2019 GordaRidge_Plume096_sterivex_2019
## GordaRidge_Vent105_SUPRS9_2019 GordaRidge_Vent105_SUPRS9_2019
## Axial_ElGuapo_FS896_2013 Axial_ElGuapo_FS896_2013
## Axial_Marker33_FS908_2014 Axial_Marker33_FS908_2014
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021
## GordaRidge_Vent041_SUPRS3_2019 GordaRidge_Vent041_SUPRS3_2019
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021
## Axial_Anemone_FS891_2013 Axial_Anemone_FS891_2013
## Axial_Marker113_FS915_2015 Axial_Marker113_FS915_2015
## Axial_Marker33_FS904_2013 Axial_Marker33_FS904_2013
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021
## GordaRidge_Vent086_SUPRS1_2019 GordaRidge_Vent086_SUPRS1_2019
## Axial_AnemonePlume_AnemonePlume_2015 Axial_AnemonePlume_AnemonePlume_2015
## Axial_Marker113_FS903_2013 Axial_Marker113_FS903_2013
## Axial_Marker113_FS906_2014 Axial_Marker113_FS906_2014
## GordaRidge_Vent009_SUPRS1_2019 GordaRidge_Vent009_SUPRS1_2019
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021
## GordaRidge_Vent011_SUPRS3_2019 GordaRidge_Vent011_SUPRS3_2019
## Axial_BSW1500m_BSW1500m_2015 Axial_BSW1500m_BSW1500m_2015
## GordaRidge_Vent106_SUPRS10_2019 GordaRidge_Vent106_SUPRS10_2019
## GordaRidge_Vent107_SUPRS11_2019 GordaRidge_Vent107_SUPRS11_2019
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021
## GordaRidge_Vent010_SUPRS2_2019 GordaRidge_Vent010_SUPRS2_2019
## GordaRidge_Vent087_SUPRS2_2019 GordaRidge_Vent087_SUPRS2_2019
## Axial_Skadi_FS902_2013 Axial_Skadi_FS902_2013
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021
## SAMPLELABEL
## GordaRidge_Vent039_SUPRS1_2019 Venti Latte_GordaRidge_Vent_2019
## GordaRidge_Vent040_SUPRS2_2019 Venti Latte_GordaRidge_Vent_2019
## GordaRidge_BSW081_sterivex_2019 Shallow seawater_GordaRidge_Background_2019
## Axial_Boca_FS905_2013 Boca_Axial_Vent_2013
## Axial_Skadi_FS910_2014 Skadi_Axial_Vent_2014
## GordaRidge_BSW056_sterivex_2019_REPb Deep seawater_GordaRidge_Background_2019
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 Rav2_VonDamm_Vent_2020
## Axial_N3Area_FS898_2013 N3Area_Axial_Vent_2013
## GordaRidge_Vent088_SUPRS3_2019 Candelabra_GordaRidge_Vent_2019
## GordaRidge_Plume036_sterivex_2019_REPb Candelabra Plume_GordaRidge_Plume_2019
## GordaRidge_Plume096_sterivex_2019 Mt Edwards Plume_GordaRidge_Plume_2019
## GordaRidge_Vent105_SUPRS9_2019 Sir Ventsalot_GordaRidge_Vent_2019
## Axial_ElGuapo_FS896_2013 El Guapo_Axial_Vent_2013
## Axial_Marker33_FS908_2014 Marker33_Axial_Vent_2014
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 Rav2_VonDamm_Vent_2020
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 Plume_VonDamm_Plume_2020
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 OldManTree_VonDamm_Vent_2020
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 ArrowLoop_VonDamm_Vent_2020
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 Shrimpocalypse_Piccard_Vent_2020
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 LotsOShrimp_Piccard_Vent_2020
## GordaRidge_Vent041_SUPRS3_2019 Venti Latte_GordaRidge_Vent_2019
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 ShrimpHole_VonDamm_Vent_2020
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 X18_VonDamm_Vent_2020
## Axial_Anemone_FS891_2013 Anemone_Axial_Vent_2013
## Axial_Marker113_FS915_2015 Marker113_Axial_Vent_2015
## Axial_Marker33_FS904_2013 Marker33_Axial_Vent_2013
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 BSW_Piccard_Background_2020
## GordaRidge_Vent086_SUPRS1_2019 Candelabra_GordaRidge_Vent_2019
## Axial_AnemonePlume_AnemonePlume_2015 Anemone Plume_Axial_Plume_2015
## Axial_Marker113_FS903_2013 Marker113_Axial_Vent_2013
## Axial_Marker113_FS906_2014 Marker113_Axial_Vent_2014
## GordaRidge_Vent009_SUPRS1_2019 Mt Edwards_GordaRidge_Vent_2019
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 BSW_VonDamm_Background_2020
## GordaRidge_Vent011_SUPRS3_2019 Mt Edwards_GordaRidge_Vent_2019
## Axial_BSW1500m_BSW1500m_2015 Deep seawater_Axial_Background_2015
## GordaRidge_Vent106_SUPRS10_2019 Sir Ventsalot_GordaRidge_Vent_2019
## GordaRidge_Vent107_SUPRS11_2019 Sir Ventsalot_GordaRidge_Vent_2019
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 Plume_Piccard_Plume_2020
## GordaRidge_Vent010_SUPRS2_2019 Mt Edwards_GordaRidge_Vent_2019
## GordaRidge_Vent087_SUPRS2_2019 Candelabra_GordaRidge_Vent_2019
## Axial_Skadi_FS902_2013 Skadi_Axial_Vent_2013
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 WhiteCastle_VonDamm_Vent_2020
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 MustardStand_VonDamm_Vent_2020
## VENT
## GordaRidge_Vent039_SUPRS1_2019 Venti Latte
## GordaRidge_Vent040_SUPRS2_2019 Venti Latte
## GordaRidge_BSW081_sterivex_2019 Shallow seawater
## Axial_Boca_FS905_2013 Boca
## Axial_Skadi_FS910_2014 Skadi
## GordaRidge_BSW056_sterivex_2019_REPb Deep seawater
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 Rav2
## Axial_N3Area_FS898_2013 N3Area
## GordaRidge_Vent088_SUPRS3_2019 Candelabra
## GordaRidge_Plume036_sterivex_2019_REPb Candelabra Plume
## GordaRidge_Plume096_sterivex_2019 Mt Edwards Plume
## GordaRidge_Vent105_SUPRS9_2019 Sir Ventsalot
## Axial_ElGuapo_FS896_2013 El Guapo
## Axial_Marker33_FS908_2014 Marker33
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 Rav2
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 Plume
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 OldManTree
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 ArrowLoop
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 Shrimpocalypse
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 LotsOShrimp
## GordaRidge_Vent041_SUPRS3_2019 Venti Latte
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 ShrimpHole
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 X18
## Axial_Anemone_FS891_2013 Anemone
## Axial_Marker113_FS915_2015 Marker113
## Axial_Marker33_FS904_2013 Marker33
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 BSW
## GordaRidge_Vent086_SUPRS1_2019 Candelabra
## Axial_AnemonePlume_AnemonePlume_2015 Anemone Plume
## Axial_Marker113_FS903_2013 Marker113
## Axial_Marker113_FS906_2014 Marker113
## GordaRidge_Vent009_SUPRS1_2019 Mt Edwards
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 BSW
## GordaRidge_Vent011_SUPRS3_2019 Mt Edwards
## Axial_BSW1500m_BSW1500m_2015 Deep seawater
## GordaRidge_Vent106_SUPRS10_2019 Sir Ventsalot
## GordaRidge_Vent107_SUPRS11_2019 Sir Ventsalot
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 Plume
## GordaRidge_Vent010_SUPRS2_2019 Mt Edwards
## GordaRidge_Vent087_SUPRS2_2019 Candelabra
## Axial_Skadi_FS902_2013 Skadi
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 WhiteCastle
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 MustardStand
## COORDINATES
## GordaRidge_Vent039_SUPRS1_2019 42.7548145 N 126.7088945 W
## GordaRidge_Vent040_SUPRS2_2019 42.754858 N 126.708922 W
## GordaRidge_BSW081_sterivex_2019 42.7546 N 126.743 W
## Axial_Boca_FS905_2013 45.927692 N 129.982482 W
## Axial_Skadi_FS910_2014 45.923383 N 129.982853 W
## GordaRidge_BSW056_sterivex_2019_REPb 42.76060928 N 126.7047891 W
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 18.375112, -81.797180
## Axial_N3Area_FS898_2013 45.943716 N 129.985163 W
## GordaRidge_Vent088_SUPRS3_2019 42.75503414 N 126.7094585 W
## GordaRidge_Plume036_sterivex_2019_REPb 42.7551105 N 126.709442 W
## GordaRidge_Plume096_sterivex_2019 42.75465646 N 126.7091669 W
## GordaRidge_Vent105_SUPRS9_2019 42.761202 N 126.7054775 W
## Axial_ElGuapo_FS896_2013 45.926575 N 129.979479 W
## Axial_Marker33_FS908_2014 45.9332 N 129.9822 W
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 18.375254, -81.797176
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 18.377600, -81.799317
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 18.375069, -81.797678
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 18.376659, -81.797986
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 18.546674, -81.717806
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 18.546789, -81.718356
## GordaRidge_Vent041_SUPRS3_2019 42.754858 N 126.708922 W
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 18.374893, -81.797441
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 18.374810, -81.797411
## Axial_Anemone_FS891_2013 45.9332 N 130.0137 W
## Axial_Marker113_FS915_2015 45.9227 N 129.9882 W
## Axial_Marker33_FS904_2013 45.9332 N 129.9822 W
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 18.547980, -81.718180
## GordaRidge_Vent086_SUPRS1_2019 42.75506794 N 126.709613 W
## Axial_AnemonePlume_AnemonePlume_2015 45.9335667 N 130.013667 W
## Axial_Marker113_FS903_2013 45.9227 N 129.9882 W
## Axial_Marker113_FS906_2014 45.9227 N 129.9882 W
## GordaRidge_Vent009_SUPRS1_2019 42.75464576 N 126.7090451 W
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 18.374183, -81.781533
## GordaRidge_Vent011_SUPRS3_2019 42.754692 N 126.7090115 W
## Axial_BSW1500m_BSW1500m_2015 46.27389 N 129.79548 W
## GordaRidge_Vent106_SUPRS10_2019 42.76131802 N 126.7054541 W
## GordaRidge_Vent107_SUPRS11_2019 42.76131802 N 126.7054541 W
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 18.546767, -81.718200
## GordaRidge_Vent010_SUPRS2_2019 42.754692 N 126.7090115 W
## GordaRidge_Vent087_SUPRS2_2019 42.75503414 N 126.7094585 W
## Axial_Skadi_FS902_2013 45.923383 N 129.982853 W
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 18.377005, -81.798088
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 18.375130, -81.797488
## TYPE_SITE
## GordaRidge_Vent039_SUPRS1_2019 GordaRidge_Vent
## GordaRidge_Vent040_SUPRS2_2019 GordaRidge_Vent
## GordaRidge_BSW081_sterivex_2019 GordaRidge_Background
## Axial_Boca_FS905_2013 Axial_Vent
## Axial_Skadi_FS910_2014 Axial_Vent
## GordaRidge_BSW056_sterivex_2019_REPb GordaRidge_Background
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 VonDamm_Vent
## Axial_N3Area_FS898_2013 Axial_Vent
## GordaRidge_Vent088_SUPRS3_2019 GordaRidge_Vent
## GordaRidge_Plume036_sterivex_2019_REPb GordaRidge_Plume
## GordaRidge_Plume096_sterivex_2019 GordaRidge_Plume
## GordaRidge_Vent105_SUPRS9_2019 GordaRidge_Vent
## Axial_ElGuapo_FS896_2013 Axial_Vent
## Axial_Marker33_FS908_2014 Axial_Vent
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 VonDamm_Vent
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 VonDamm_Plume
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 VonDamm_Vent
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 VonDamm_Vent
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 Piccard_Vent
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 Piccard_Vent
## GordaRidge_Vent041_SUPRS3_2019 GordaRidge_Vent
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 VonDamm_Vent
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 VonDamm_Vent
## Axial_Anemone_FS891_2013 Axial_Vent
## Axial_Marker113_FS915_2015 Axial_Vent
## Axial_Marker33_FS904_2013 Axial_Vent
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 Piccard_Background
## GordaRidge_Vent086_SUPRS1_2019 GordaRidge_Vent
## Axial_AnemonePlume_AnemonePlume_2015 Axial_Plume
## Axial_Marker113_FS903_2013 Axial_Vent
## Axial_Marker113_FS906_2014 Axial_Vent
## GordaRidge_Vent009_SUPRS1_2019 GordaRidge_Vent
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 VonDamm_Background
## GordaRidge_Vent011_SUPRS3_2019 GordaRidge_Vent
## Axial_BSW1500m_BSW1500m_2015 Axial_Background
## GordaRidge_Vent106_SUPRS10_2019 GordaRidge_Vent
## GordaRidge_Vent107_SUPRS11_2019 GordaRidge_Vent
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 Piccard_Plume
## GordaRidge_Vent010_SUPRS2_2019 GordaRidge_Vent
## GordaRidge_Vent087_SUPRS2_2019 GordaRidge_Vent
## Axial_Skadi_FS902_2013 Axial_Vent
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 VonDamm_Vent
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 VonDamm_Vent
## SITE SAMPLEID
## GordaRidge_Vent039_SUPRS1_2019 GordaRidge Vent039
## GordaRidge_Vent040_SUPRS2_2019 GordaRidge Vent040
## GordaRidge_BSW081_sterivex_2019 GordaRidge BSW081
## Axial_Boca_FS905_2013 Axial FS905
## Axial_Skadi_FS910_2014 Axial FS910
## GordaRidge_BSW056_sterivex_2019_REPb GordaRidge BSW056
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 VonDamm <NA>
## Axial_N3Area_FS898_2013 Axial FS898
## GordaRidge_Vent088_SUPRS3_2019 GordaRidge Vent088
## GordaRidge_Plume036_sterivex_2019_REPb GordaRidge Plume036
## GordaRidge_Plume096_sterivex_2019 GordaRidge Plume096
## GordaRidge_Vent105_SUPRS9_2019 GordaRidge Vent105
## Axial_ElGuapo_FS896_2013 Axial FS896
## Axial_Marker33_FS908_2014 Axial FS908
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 VonDamm <NA>
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 VonDamm <NA>
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 VonDamm <NA>
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 VonDamm <NA>
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 Piccard <NA>
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 Piccard <NA>
## GordaRidge_Vent041_SUPRS3_2019 GordaRidge Vent041
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 VonDamm <NA>
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 VonDamm <NA>
## Axial_Anemone_FS891_2013 Axial FS891
## Axial_Marker113_FS915_2015 Axial FS915
## Axial_Marker33_FS904_2013 Axial FS904
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 Piccard <NA>
## GordaRidge_Vent086_SUPRS1_2019 GordaRidge Vent086
## Axial_AnemonePlume_AnemonePlume_2015 Axial AnemonePlume
## Axial_Marker113_FS903_2013 Axial FS903
## Axial_Marker113_FS906_2014 Axial FS906
## GordaRidge_Vent009_SUPRS1_2019 GordaRidge Vent009
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 VonDamm <NA>
## GordaRidge_Vent011_SUPRS3_2019 GordaRidge Vent011
## Axial_BSW1500m_BSW1500m_2015 Axial BSW1500m
## GordaRidge_Vent106_SUPRS10_2019 GordaRidge Vent106
## GordaRidge_Vent107_SUPRS11_2019 GordaRidge Vent107
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 Piccard <NA>
## GordaRidge_Vent010_SUPRS2_2019 GordaRidge Vent010
## GordaRidge_Vent087_SUPRS2_2019 GordaRidge Vent087
## Axial_Skadi_FS902_2013 Axial FS902
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 VonDamm <NA>
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 VonDamm <NA>
## DEPTH SAMPLETYPE YEAR
## GordaRidge_Vent039_SUPRS1_2019 2708.0 Vent 2019
## GordaRidge_Vent040_SUPRS2_2019 2708.0 Vent 2019
## GordaRidge_BSW081_sterivex_2019 150.0 Background 2019
## Axial_Boca_FS905_2013 1516.9 Vent 2013
## Axial_Skadi_FS910_2014 1517.0 Vent 2014
## GordaRidge_BSW056_sterivex_2019_REPb 2010.0 Background 2019
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 2389.6 Vent 2020
## Axial_N3Area_FS898_2013 1523.0 Vent 2013
## GordaRidge_Vent088_SUPRS3_2019 2730.0 Vent 2019
## GordaRidge_Plume036_sterivex_2019_REPb 2725.0 Plume 2019
## GordaRidge_Plume096_sterivex_2019 2707.0 Plume 2019
## GordaRidge_Vent105_SUPRS9_2019 2732.0 Vent 2019
## Axial_ElGuapo_FS896_2013 1502.0 Vent 2013
## Axial_Marker33_FS908_2014 1514.0 Vent 2014
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 2388.9 Vent 2020
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 1979.0 Plume 2020
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 2375.8 Vent 2020
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 2309.0 Vent 2020
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 4945.0 Vent 2020
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 4967.0 Vent 2020
## GordaRidge_Vent041_SUPRS3_2019 2708.0 Vent 2019
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 2376.0 Vent 2020
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 2377.0 Vent 2020
## Axial_Anemone_FS891_2013 1542.0 Vent 2013
## Axial_Marker113_FS915_2015 1520.0 Vent 2015
## Axial_Marker33_FS904_2013 1516.0 Vent 2013
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 4776.0 Background 2020
## GordaRidge_Vent086_SUPRS1_2019 2730.0 Vent 2019
## Axial_AnemonePlume_AnemonePlume_2015 1500.0 Plume 2015
## Axial_Marker113_FS903_2013 1520.0 Vent 2013
## Axial_Marker113_FS906_2014 1518.0 Vent 2014
## GordaRidge_Vent009_SUPRS1_2019 2707.0 Vent 2019
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 2400.0 Background 2020
## GordaRidge_Vent011_SUPRS3_2019 2707.0 Vent 2019
## Axial_BSW1500m_BSW1500m_2015 1520.0 Background 2015
## GordaRidge_Vent106_SUPRS10_2019 2732.0 Vent 2019
## GordaRidge_Vent107_SUPRS11_2019 2732.0 Vent 2019
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 4944.0 Plume 2020
## GordaRidge_Vent010_SUPRS2_2019 2707.0 Vent 2019
## GordaRidge_Vent087_SUPRS2_2019 2730.0 Vent 2019
## Axial_Skadi_FS902_2013 1561.6 Vent 2013
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 2307.0 Vent 2020
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 2374.0 Vent 2020
## TEMP pH
## GordaRidge_Vent039_SUPRS1_2019 11.000 6.400000
## GordaRidge_Vent040_SUPRS2_2019 11.000 6.400000
## GordaRidge_BSW081_sterivex_2019 8.600 NA
## Axial_Boca_FS905_2013 6.700 6.800000
## Axial_Skadi_FS910_2014 29.600 5.853000
## GordaRidge_BSW056_sterivex_2019_REPb 1.800 7.800000
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 94.000 5.770000
## Axial_N3Area_FS898_2013 20.100 5.670000
## GordaRidge_Vent088_SUPRS3_2019 79.000 5.500000
## GordaRidge_Plume036_sterivex_2019_REPb 1.700 NA
## GordaRidge_Plume096_sterivex_2019 1.800 NA
## GordaRidge_Vent105_SUPRS9_2019 72.000 NA
## Axial_ElGuapo_FS896_2013 26.100 5.420000
## Axial_Marker33_FS908_2014 18.500 5.600000
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 98.200 5.782500
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 4.208 NA
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 121.600 5.820000
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 137.000 5.845000
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 85.000 5.967500
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 36.000 5.920000
## GordaRidge_Vent041_SUPRS3_2019 11.000 6.400000
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 21.000 7.720000
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 48.000 6.976667
## Axial_Anemone_FS891_2013 28.200 5.500000
## Axial_Marker113_FS915_2015 25.400 6.600000
## Axial_Marker33_FS904_2013 27.300 5.500000
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 4.460 NA
## GordaRidge_Vent086_SUPRS1_2019 79.000 5.500000
## Axial_AnemonePlume_AnemonePlume_2015 NA NA
## Axial_Marker113_FS903_2013 24.500 6.200000
## Axial_Marker113_FS906_2014 24.300 5.800000
## GordaRidge_Vent009_SUPRS1_2019 40.000 6.000000
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 4.181 NA
## GordaRidge_Vent011_SUPRS3_2019 40.000 6.000000
## Axial_BSW1500m_BSW1500m_2015 2.000 7.800000
## GordaRidge_Vent106_SUPRS10_2019 72.000 NA
## GordaRidge_Vent107_SUPRS11_2019 72.000 NA
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 4.460 NA
## GordaRidge_Vent010_SUPRS2_2019 40.000 6.000000
## GordaRidge_Vent087_SUPRS2_2019 79.000 5.500000
## Axial_Skadi_FS902_2013 35.600 6.500000
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 108.000 5.635000
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 108.000 5.856670
## PercSeawater Mg
## GordaRidge_Vent039_SUPRS1_2019 97.0 50.900
## GordaRidge_Vent040_SUPRS2_2019 97.0 50.900
## GordaRidge_BSW081_sterivex_2019 100.0 51.800
## Axial_Boca_FS905_2013 96.5 50.840
## Axial_Skadi_FS910_2014 92.0 48.460
## GordaRidge_BSW056_sterivex_2019_REPb 100.0 51.800
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 29.6 15.565
## Axial_N3Area_FS898_2013 97.8 51.550
## GordaRidge_Vent088_SUPRS3_2019 88.0 35.700
## GordaRidge_Plume036_sterivex_2019_REPb NA NA
## GordaRidge_Plume096_sterivex_2019 NA NA
## GordaRidge_Vent105_SUPRS9_2019 98.0 50.800
## Axial_ElGuapo_FS896_2013 89.3 47.070
## Axial_Marker33_FS908_2014 91.3 48.100
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 29.6 15.565
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 NA NA
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 28.6 15.025
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 44.0 23.085
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 81.7 42.870
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 94.9 49.829
## GordaRidge_Vent041_SUPRS3_2019 97.0 50.900
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 96.4 50.620
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 58.9 30.930
## Axial_Anemone_FS891_2013 88.9 46.500
## Axial_Marker113_FS915_2015 95.8 50.200
## Axial_Marker33_FS904_2013 87.1 45.900
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 100.0 52.500
## GordaRidge_Vent086_SUPRS1_2019 88.0 35.700
## Axial_AnemonePlume_AnemonePlume_2015 NA NA
## Axial_Marker113_FS903_2013 96.0 50.200
## Axial_Marker113_FS906_2014 96.4 48.800
## GordaRidge_Vent009_SUPRS1_2019 83.0 42.600
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 100.0 NA
## GordaRidge_Vent011_SUPRS3_2019 83.0 42.600
## Axial_BSW1500m_BSW1500m_2015 100.0 52.400
## GordaRidge_Vent106_SUPRS10_2019 98.0 50.800
## GordaRidge_Vent107_SUPRS11_2019 98.0 50.800
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 NA NA
## GordaRidge_Vent010_SUPRS2_2019 83.0 42.600
## GordaRidge_Vent087_SUPRS2_2019 88.0 35.700
## Axial_Skadi_FS902_2013 87.0 45.840
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 27.1 14.205
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 41.9 22.020
## H2
## GordaRidge_Vent039_SUPRS1_2019 NA
## GordaRidge_Vent040_SUPRS2_2019 NA
## GordaRidge_BSW081_sterivex_2019 NA
## Axial_Boca_FS905_2013 1.996020e+00
## Axial_Skadi_FS910_2014 3.070800e-01
## GordaRidge_BSW056_sterivex_2019_REPb NA
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 1.024400e+04
## Axial_N3Area_FS898_2013 3.152442e-01
## GordaRidge_Vent088_SUPRS3_2019 2.190000e+01
## GordaRidge_Plume036_sterivex_2019_REPb NA
## GordaRidge_Plume096_sterivex_2019 NA
## GordaRidge_Vent105_SUPRS9_2019 NA
## Axial_ElGuapo_FS896_2013 6.458507e-01
## Axial_Marker33_FS908_2014 1.500000e+00
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 1.024400e+04
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 NA
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 1.160900e+04
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 9.819000e+03
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 6.069000e+00
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 2.268800e+04
## GordaRidge_Vent041_SUPRS3_2019 NA
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 5.527440e+00
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 1.781064e+00
## Axial_Anemone_FS891_2013 1.390000e+01
## Axial_Marker113_FS915_2015 3.000000e-01
## Axial_Marker33_FS904_2013 1.500000e+00
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 NA
## GordaRidge_Vent086_SUPRS1_2019 2.190000e+01
## Axial_AnemonePlume_AnemonePlume_2015 NA
## Axial_Marker113_FS903_2013 1.400000e+00
## Axial_Marker113_FS906_2014 1.000000e+00
## GordaRidge_Vent009_SUPRS1_2019 1.270000e+02
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 NA
## GordaRidge_Vent011_SUPRS3_2019 1.270000e+02
## Axial_BSW1500m_BSW1500m_2015 2.000000e-03
## GordaRidge_Vent106_SUPRS10_2019 NA
## GordaRidge_Vent107_SUPRS11_2019 NA
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 NA
## GordaRidge_Vent010_SUPRS2_2019 1.270000e+02
## GordaRidge_Vent087_SUPRS2_2019 2.190000e+01
## Axial_Skadi_FS902_2013 1.023600e+00
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 1.453300e+04
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 8.995000e+03
## H2S
## GordaRidge_Vent039_SUPRS1_2019 NA
## GordaRidge_Vent040_SUPRS2_2019 NA
## GordaRidge_BSW081_sterivex_2019 NA
## Axial_Boca_FS905_2013 0.003646165
## Axial_Skadi_FS910_2014 0.057321600
## GordaRidge_BSW056_sterivex_2019_REPb NA
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 1.545000000
## Axial_N3Area_FS898_2013 0.551976300
## GordaRidge_Vent088_SUPRS3_2019 NA
## GordaRidge_Plume036_sterivex_2019_REPb NA
## GordaRidge_Plume096_sterivex_2019 NA
## GordaRidge_Vent105_SUPRS9_2019 NA
## Axial_ElGuapo_FS896_2013 0.230299764
## Axial_Marker33_FS908_2014 0.267671400
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 1.545000000
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 NA
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 1.685000000
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 1.655000000
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 NA
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 NA
## GordaRidge_Vent041_SUPRS3_2019 NA
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 NA
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 2.110000000
## Axial_Anemone_FS891_2013 1.060449600
## Axial_Marker113_FS915_2015 0.591845520
## Axial_Marker33_FS904_2013 0.557862000
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 NA
## GordaRidge_Vent086_SUPRS1_2019 NA
## Axial_AnemonePlume_AnemonePlume_2015 NA
## Axial_Marker113_FS903_2013 0.746204400
## Axial_Marker113_FS906_2014 0.569121600
## GordaRidge_Vent009_SUPRS1_2019 1.010000000
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 NA
## GordaRidge_Vent011_SUPRS3_2019 1.010000000
## Axial_BSW1500m_BSW1500m_2015 NA
## GordaRidge_Vent106_SUPRS10_2019 NA
## GordaRidge_Vent107_SUPRS11_2019 NA
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 NA
## GordaRidge_Vent010_SUPRS2_2019 1.010000000
## GordaRidge_Vent087_SUPRS2_2019 NA
## Axial_Skadi_FS902_2013 0.190830260
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 1.675000000
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 1.675000000
## CH4 ProkConc
## GordaRidge_Vent039_SUPRS1_2019 0.9000000 111192.50
## GordaRidge_Vent040_SUPRS2_2019 0.9000000 111192.50
## GordaRidge_BSW081_sterivex_2019 NA NA
## Axial_Boca_FS905_2013 1.0236000 NA
## Axial_Skadi_FS910_2014 6.7793028 NA
## GordaRidge_BSW056_sterivex_2019_REPb NA 39100.00
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 1893.6600000 NA
## Axial_N3Area_FS898_2013 68.0758927 NA
## GordaRidge_Vent088_SUPRS3_2019 23.7000000 55076.66
## GordaRidge_Plume036_sterivex_2019_REPb NA 76900.00
## GordaRidge_Plume096_sterivex_2019 NA NA
## GordaRidge_Vent105_SUPRS9_2019 NA 52998.29
## Axial_ElGuapo_FS896_2013 3.2724390 NA
## Axial_Marker33_FS908_2014 6.5510400 390000.00
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 1893.6600000 NA
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 NA 16478.31
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 1983.7368000 NA
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 1622.4060000 10369.79
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 21.4956000 238585.68
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 11.2596000 53878.14
## GordaRidge_Vent041_SUPRS3_2019 0.9000000 111192.50
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 218.0268000 NA
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 1312.2552000 111429.78
## Axial_Anemone_FS891_2013 15.1492800 410000.00
## Axial_Marker113_FS915_2015 22.8262800 1500000.00
## Axial_Marker33_FS904_2013 19.4484000 420000.00
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 NA 11860.19
## GordaRidge_Vent086_SUPRS1_2019 23.7000000 55076.66
## Axial_AnemonePlume_AnemonePlume_2015 NA NA
## Axial_Marker113_FS903_2013 17.2988400 460000.00
## Axial_Marker113_FS906_2014 38.8968000 680000.00
## GordaRidge_Vent009_SUPRS1_2019 10.1000000 51439.52
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 NA 34705.92
## GordaRidge_Vent011_SUPRS3_2019 10.1000000 51439.52
## Axial_BSW1500m_BSW1500m_2015 0.0020472 25000.00
## GordaRidge_Vent106_SUPRS10_2019 NA 52998.29
## GordaRidge_Vent107_SUPRS11_2019 NA 52998.29
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 NA 51429.13
## GordaRidge_Vent010_SUPRS2_2019 10.1000000 51439.52
## GordaRidge_Vent087_SUPRS2_2019 23.7000000 55076.66
## Axial_Skadi_FS902_2013 4.6114408 NA
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 2252.9436000 NA
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 1662.3264000 56677.00
## Sample_or_Control
## GordaRidge_Vent039_SUPRS1_2019 Sample
## GordaRidge_Vent040_SUPRS2_2019 Sample
## GordaRidge_BSW081_sterivex_2019 Sample
## Axial_Boca_FS905_2013 Sample
## Axial_Skadi_FS910_2014 Sample
## GordaRidge_BSW056_sterivex_2019_REPb Sample
## 70_MCR_VonDamm_HOG_Rav2_J21238HOG14_5_Jun2021 Sample
## Axial_N3Area_FS898_2013 Sample
## GordaRidge_Vent088_SUPRS3_2019 Sample
## GordaRidge_Plume036_sterivex_2019_REPb Sample
## GordaRidge_Plume096_sterivex_2019 Sample
## GordaRidge_Vent105_SUPRS9_2019 Sample
## Axial_ElGuapo_FS896_2013 Sample
## Axial_Marker33_FS908_2014 Sample
## 80_MCR_VonDamm_HOG_Rav2_J21244HOG20_0_Jun2021 Sample
## 65_MCR_VonDamm_CTD_Plume_CTD003_0_Jun2021 Sample
## 71_MCR_VonDamm_HOG_OldManTree_J21238HOG20_5_Jun2021 Sample
## 66_MCR_VonDamm_HOG_ArrowLoop_J21243HOG18_5_Jun2021 Sample
## 77_MCR_Piccard_HOG_Shrimpocalypse_J21240HOG14_0_Jun2021 Sample
## 78_MCR_Piccard_HOG_LotsOShrimp_J21241HOG14_0_Jun2021 Sample
## GordaRidge_Vent041_SUPRS3_2019 Sample
## 72_MCR_VonDamm_HOG_ShrimpHole_J21244HOG18_0_Jun2021 Sample
## 76_MCR_VonDamm_HOG_X18_J21235HOG20_0_Jun2021 Sample
## Axial_Anemone_FS891_2013 Sample
## Axial_Marker113_FS915_2015 Sample
## Axial_Marker33_FS904_2013 Sample
## 73_MCR_Piccard_CTD_BSW_CTD005_0_Jun2021 Sample
## GordaRidge_Vent086_SUPRS1_2019 Sample
## Axial_AnemonePlume_AnemonePlume_2015 Sample
## Axial_Marker113_FS903_2013 Sample
## Axial_Marker113_FS906_2014 Sample
## GordaRidge_Vent009_SUPRS1_2019 Sample
## 63_MCR_VonDamm_CTD_BSW_CTD002_0_Jun2021 Sample
## GordaRidge_Vent011_SUPRS3_2019 Sample
## Axial_BSW1500m_BSW1500m_2015 Sample
## GordaRidge_Vent106_SUPRS10_2019 Sample
## GordaRidge_Vent107_SUPRS11_2019 Sample
## 74_MCR_Piccard_CTD_Plume_CTD004_5_Jun2021 Sample
## GordaRidge_Vent010_SUPRS2_2019 Sample
## GordaRidge_Vent087_SUPRS2_2019 Sample
## Axial_Skadi_FS902_2013 Sample
## 67_MCR_VonDamm_HOG_WhiteCastle_J21235HOG12_5_Jun2021 Sample
## 69_MCR_VonDamm_HOG_MustardStand_J21243HOG14_5_Jun2021 Sample
# CLR-transformed data, transpose and create euclidean dist matrix
dist_euc <- vegdist(t(count_table_clr), method = "euclidean")
# ?vegdist()# ?betadisper()
beta_SITE <- betadisper(dist_euc, sample_data(physeq_insitu)$SITE)
beta_SAMPLETYPE <- betadisper(dist_euc, sample_data(physeq_insitu)$SAMPLETYPE)
beta_TYPE_SITE <- betadisper(dist_euc, sample_data(physeq_insitu)$TYPE_SITE)SITE
anova(beta_SITE)## Analysis of Variance Table
##
## Response: Distances
## Df Sum Sq Mean Sq F value Pr(>F)
## Groups 3 112.43 37.475 2.7555 0.05527 .
## Residuals 39 530.41 13.600
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
TukeyHSD(beta_SITE)## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: aov(formula = distances ~ group, data = df)
##
## $group
## diff lwr upr p adj
## GordaRidge-Axial -1.4140515 -5.1091060 2.281003 0.7348370
## Piccard-Axial 0.5897262 -5.0684479 6.247900 0.9922407
## VonDamm-Axial 2.8385758 -1.3238428 7.000994 0.2750595
## Piccard-GordaRidge 2.0037777 -3.5281759 7.535731 0.7660453
## VonDamm-GordaRidge 4.2526273 0.2634789 8.241776 0.0328264
## VonDamm-Piccard 2.2488496 -3.6056198 8.103319 0.7326007
plot(beta_SITE)# View(beta_SITE$vectors) # to confirm sample that is an outlierSampletype
anova(beta_SAMPLETYPE)## Analysis of Variance Table
##
## Response: Distances
## Df Sum Sq Mean Sq F value Pr(>F)
## Groups 2 15.19 7.5974 0.4238 0.6574
## Residuals 40 716.99 17.9247
TukeyHSD(beta_SAMPLETYPE)## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: aov(formula = distances ~ group, data = df)
##
## $group
## diff lwr upr p adj
## Plume-Background 1.5609149 -4.956307 8.078137 0.8299904
## Vent-Background 1.8695977 -3.075585 6.814781 0.6308843
## Vent-Plume 0.3086828 -4.636500 5.253866 0.9873595
plot(beta_SAMPLETYPE)# View(beta_SAMPLETYPE$vectors)Based on dispersion testing, it is clear that Boca (Axial, snowblower vent) is an outlier. Secondary to Boca, however are the plume and CTD (Background samples).
Permutest outputs
permutest(beta_SITE, pairwise = TRUE, permutations = 999)##
## Permutation test for homogeneity of multivariate dispersions
## Permutation: free
## Number of permutations: 999
##
## Response: Distances
## Df Sum Sq Mean Sq F N.Perm Pr(>F)
## Groups 3 112.43 37.475 2.7555 999 0.06 .
## Residuals 39 530.41 13.600
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
##
## Pairwise comparisons:
## (Observed p-value below diagonal, permuted p-value above diagonal)
## Axial GordaRidge Piccard VonDamm
## Axial 0.3140000 0.8130000 0.159
## GordaRidge 0.2838871 0.1110000 0.002
## Piccard 0.8148084 0.1048512 0.379
## VonDamm 0.1601716 0.0032313 0.3775405
permutest(beta_SAMPLETYPE, pairwise = TRUE, permutations = 999)##
## Permutation test for homogeneity of multivariate dispersions
## Permutation: free
## Number of permutations: 999
##
## Response: Distances
## Df Sum Sq Mean Sq F N.Perm Pr(>F)
## Groups 2 15.19 7.5974 0.4238 999 0.655
## Residuals 40 716.99 17.9247
##
## Pairwise comparisons:
## (Observed p-value below diagonal, permuted p-value above diagonal)
## Background Plume Vent
## Background 0.63200 0.334
## Plume 0.63370 0.866
## Vent 0.34765 0.87885
Repeat dispersion test with removed samples, Boca and background.
count_table_clr_noboca <- compositions::clr(otu_table(subset_samples(physeq_insitu, VENT != "Boca")))
count_table_clr_nobocaBSW <- compositions::clr(otu_table(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent"))))
# names(count_table_clr_nobocaBSW)
# CLR-transformed data, transpose and create euclidean dist matrix
dist_euc_noboca <- vegdist(t(count_table_clr_noboca), method = "euclidean")
dist_euc_nobocaBSW <- vegdist(t(count_table_clr_nobocaBSW), method = "euclidean")
# ?vegdist()Re-check dispersion without Boca sample.
beta_SITE <- betadisper(dist_euc_noboca, sample_data(subset_samples(physeq_insitu, VENT != "Boca"))$SITE)
anova(beta_SITE)## Analysis of Variance Table
##
## Response: Distances
## Df Sum Sq Mean Sq F value Pr(>F)
## Groups 3 142.05 47.351 5.0841 0.004668 **
## Residuals 38 353.92 9.314
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
TukeyHSD(beta_SITE)## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: aov(formula = distances ~ group, data = df)
##
## $group
## diff lwr upr p adj
## GordaRidge-Axial -0.01488429 -3.1457852 3.116017 0.9999992
## Piccard-Axial 2.04455322 -2.6889240 6.778030 0.6550081
## VonDamm-Axial 4.33568392 0.8252432 7.846125 0.0103625
## Piccard-GordaRidge 2.05943751 -2.5237321 6.642607 0.6261842
## VonDamm-GordaRidge 4.35056821 1.0455976 7.655539 0.0057447
## VonDamm-Piccard 2.29113069 -2.5592402 7.141502 0.5878419
plot(beta_SITE)# View(beta_SITE$vectors) # to confirm samples that are outliersCheck dispersion without Boca or background samples.
beta_SITE <- betadisper(dist_euc_nobocaBSW, sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE)
anova(beta_SITE)## Analysis of Variance Table
##
## Response: Distances
## Df Sum Sq Mean Sq F value Pr(>F)
## Groups 3 51.705 17.2351 2.1788 0.1128
## Residuals 28 221.495 7.9105
TukeyHSD(beta_SITE)## Tukey multiple comparisons of means
## 95% family-wise confidence level
##
## Fit: aov(formula = distances ~ group, data = df)
##
## $group
## diff lwr upr p adj
## GordaRidge-Axial 0.1538572 -3.1341755 3.441890 0.9992363
## Piccard-Axial -0.5993290 -6.5476041 5.348946 0.9925605
## VonDamm-Axial 2.9344569 -0.7081027 6.577017 0.1480828
## Piccard-GordaRidge -0.7531862 -6.6182645 5.111892 0.9848926
## VonDamm-GordaRidge 2.7805997 -0.7244550 6.285654 0.1576322
## VonDamm-Piccard 3.5337860 -2.5371468 9.604719 0.4007670
plot(beta_SITE)# View(beta_SITE$vectors) # to confirm sample that is an outlierUse adonis() to examine categorical significance. Use dist_euc_noboca or dist_euc_nobocaBSW.
set.seed(1212)
adonis(dist_euc_noboca ~ sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE, permutations = 999) # Categorical with vent site##
## Call:
## adonis(formula = dist_euc_noboca ~ sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE, permutations = 999)
##
## Permutation: free
## Number of permutations: 999
##
## Terms added sequentially (first to last)
##
## Df SumsOfSqs
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE 3 1931.5
## Residuals 38 15543.6
## Total 41 17475.2
## MeanSqs
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE 643.85
## Residuals 409.04
## Total
## F.Model
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE 1.574
## Residuals
## Total
## R2
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE 0.11053
## Residuals 0.88947
## Total 1.00000
## Pr(>F)
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITE 0.001 ***
## Residuals
## Total
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Influence of vent site on sample communities is significant.
adonis(dist_euc ~ sample_data(physeq_insitu)$SITE + sample_data(physeq_insitu)$SAMPLETYPE, permutations = 999) # Categorical with vent site##
## Call:
## adonis(formula = dist_euc ~ sample_data(physeq_insitu)$SITE + sample_data(physeq_insitu)$SAMPLETYPE, permutations = 999)
##
## Permutation: free
## Number of permutations: 999
##
## Terms added sequentially (first to last)
##
## Df SumsOfSqs MeanSqs F.Model R2
## sample_data(physeq_insitu)$SITE 3 1970.6 656.87 1.5294 0.10475
## sample_data(physeq_insitu)$SAMPLETYPE 2 951.0 475.52 1.1072 0.05055
## Residuals 37 15891.2 429.49 0.84470
## Total 42 18812.9 1.00000
## Pr(>F)
## sample_data(physeq_insitu)$SITE 0.001 ***
## sample_data(physeq_insitu)$SAMPLETYPE 0.179
## Residuals
## Total
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
adonis(dist_euc_nobocaBSW ~ sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE, permutations = 999) # Categorical with vent site##
## Call:
## adonis(formula = dist_euc_nobocaBSW ~ sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE, permutations = 999)
##
## Permutation: free
## Number of permutations: 999
##
## Terms added sequentially (first to last)
##
## Df
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE 3
## Residuals 28
## Total 31
## SumsOfSqs
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE 1467.8
## Residuals 10419.5
## Total 11887.3
## MeanSqs
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE 489.27
## Residuals 372.12
## Total
## F.Model
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE 1.3148
## Residuals
## Total
## R2
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE 0.12348
## Residuals 0.87652
## Total 1.00000
## Pr(>F)
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE 0.003
## Residuals
## Total
##
## sample_data(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))$SITE **
## Residuals
## Total
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Isolate numerics for each parameter to be tested below.
# names(sample_data(physeq_insitu))
# Numerics - geochem
# use dist_euc_noboca
# and: sample_data(subset_samples(physeq_insitu, (VENT != "Boca"))
temp <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$TEMP
ph <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$pH
persea <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$PercSeawater
mg <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$Mg
h2 <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$H2
h2s <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$H2S
ch4 <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$CH4
prok <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$ProkConc
# categorical (logic)
sampletype <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SAMPLETYPE
site <- sample_data(subset_samples(physeq_insitu, (VENT != "Boca")))$SITELegendre and Anderson (1999), RDA that looks for linear relationships on dissimilarity matrices. Constrained ordination with non-Euclidean distance measures. (Legendre P, Anderson MJ (1999) Distance-based redundancy analysis: testing multispecies responses in multifactorial ecological experiments. Ecol Monogr. 69:1–24.)
Below dbrda() statement inputs all samples as a distance matrix (Euclidean), with the RH side variables as numeric data following the ~.
# ?dbrda()
vent_microeuk_rda <- dbrda(dist_euc_noboca ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, dist = 'euc', na.action = na.exclude)
# na.exclude: includes NAs for scores of missing observations (use this)
# na.omit: only non-missing sites scores are shown
# Print anova() output with significance values
anova(vent_microeuk_rda) #overall significance## Permutation test for dbrda under reduced model
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = dist_euc_noboca ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## Model 8 299.409 1.371 0.028 *
## Residual 3 81.897
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
## The model is significant# Axes; set x and y equal to variance of axes.
xy <- anova(vent_microeuk_rda, by = 'axis')
x <- round(xy$Variance[1], 1); y <- round(xy$Variance[2], 1)
# by margin
anova(vent_microeuk_rda, by = 'margin')## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = dist_euc_noboca ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 40.876 1.4973 0.053 .
## ph 1 27.829 1.0194 0.460
## persea 1 28.390 1.0399 0.445
## mg 1 29.841 1.0931 0.371
## h2 1 35.575 1.3032 0.136
## h2s 1 28.178 1.0322 0.471
## ch4 1 37.500 1.3737 0.051 .
## prok 1 28.450 1.0422 0.457
## Residual 3 81.897
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Output shows temperature and methane as significant environmental parameters.
Samples visualized with respect to biplot direction of environmental parameters.
plot(vent_microeuk_rda, xlab = x, ylab = y)# plot(vent_microeuk_rda, type = 'points', xlab = x, ylab = y)Try with condition set to sample type. QUESTION: Null for the below… if we account for differences in Condition X… are the parameters still significant? Below results suggest that when we account for vent site or sample type, the parameters are not significant.
# vent_microeuk_rda_sampletype <- dbrda(dist_euc_noboca ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok + Condition(sampletype), dist = 'euc', na.action = na.exclude)
# anova(vent_microeuk_rda_sampletype, by = 'terms')Try with condition set to site.
vent_microeuk_rda_site <- dbrda(dist_euc_noboca ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok + Condition(site), dist = 'euc', na.action = na.exclude)
anova(vent_microeuk_rda_site, by = 'terms')## Permutation test for dbrda under reduced model
## Terms added sequentially (first to last)
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = dist_euc_noboca ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok + Condition(site), distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 48.358 1.9299 0.009 **
## ph 1 34.852 1.3909 0.114
## persea 1 31.721 1.2659 0.208
## mg 1 34.344 1.3706 0.125
## h2 1 30.766 1.2278 0.228
## h2s 1 26.793 1.0692 0.391
## ch4 1 32.512 1.2975 0.174
## Residual 2 50.116
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
With various outliers depending on the question posed, below function takes subsetted data and runs dbrda() analysis.
dbrda_subset <- function(subset_df){
# category <- enquo(category)
# subset_df <- subset_samples(physeq_insitu, category %in% selection)
clr_out <- compositions::clr(otu_table(subset_df))
euc_out <- vegdist(t(clr_out), method = "euclidean")
# Params
temp <- sample_data(subset_df)$TEMP
ph <- sample_data(subset_df)$pH
persea <- sample_data(subset_df)$PercSeawater
mg <- sample_data(subset_df)$Mg
h2 <- sample_data(subset_df)$H2
h2s <- sample_data(subset_df)$H2S
ch4 <- sample_data(subset_df)$CH4
prok <- sample_data(subset_df)$ProkConc
# DBRDA
rda_out <- dbrda(euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, dist = 'euc', na.action = na.exclude)
# Overall significance
# anova(rda_out)
# Print results by margin
anova(rda_out, by = 'margin')
# Plot
# xy <- anova(rda_out, by = 'axis')
# x <- round(xy$Variance[1], 1); y <- round(xy$Variance[2], 1)
# plot(rda_out, xlab = x, ylab = y)
}
# dbrda_subset(physeq_insitu)Check sample data categories fpr further testing.
# sample_data(physeq_insitu)Removed Boca outlier and isolate vent-only sites, test for significant parameters.
dbrda_subset(subset_samples(physeq_insitu, (VENT != "Boca" & SAMPLETYPE == "Vent")))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 40.917 1.6029 0.044 *
## ph 1 26.138 1.0239 0.430
## persea 1 27.196 1.0654 0.382
## mg 1 28.472 1.1154 0.314
## h2 1 35.039 1.3726 0.087 .
## h2s 1 26.724 1.0469 0.420
## ch4 1 35.733 1.3998 0.038 *
## prok 1 26.916 1.0544 0.403
## Residual 3 76.582
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Compare with original (redundant to above) with only removal of Boca outlier.
dbrda_subset(subset_samples(physeq_insitu, VENT != "Boca"))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 40.876 1.4973 0.061 .
## ph 1 27.829 1.0194 0.445
## persea 1 28.390 1.0399 0.443
## mg 1 29.841 1.0931 0.370
## h2 1 35.575 1.3032 0.115
## h2s 1 28.178 1.0322 0.438
## ch4 1 37.500 1.3737 0.043 *
## prok 1 28.450 1.0422 0.395
## Residual 3 81.897
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Temperature and methane.
Subset to only Axial samples (remove Boca outlier) - check significance of year. Subset to vents only - check significant of year again.
AXIAL <- subset_samples(physeq_insitu, (SITE == "Axial" & VENT != "Boca"))
clr_out <- compositions::clr(otu_table(AXIAL))
euc_out <- vegdist(t(clr_out), method = "euclidean")
adonis(euc_out ~ sample_data(AXIAL)$YEAR, permutations = 999) ##
## Call:
## adonis(formula = euc_out ~ sample_data(AXIAL)$YEAR, permutations = 999)
##
## Permutation: free
## Number of permutations: 999
##
## Terms added sequentially (first to last)
##
## Df SumsOfSqs MeanSqs F.Model R2 Pr(>F)
## sample_data(AXIAL)$YEAR 2 521.67 260.83 0.94018 0.17282 0.709
## Residuals 9 2496.89 277.43 0.82718
## Total 11 3018.56 1.00000
Year was not significant at Axial. Although, year to year sampling was not consistent.
# dbrda_subset(subset_samples(AXIAL, SAMPLETYPE == "Vent"))Subset to vent sites only - check significance of Piccard vs. VD. Geochem?
MCR <- subset_samples(physeq_insitu, (SITE == "Piccard" | SITE == "VonDamm"))
clr_out <- compositions::clr(otu_table(MCR))
euc_out <- vegdist(t(clr_out), method = "euclidean")
# sample_data(MCR)
adonis(euc_out ~ sample_data(MCR)$SITE, permutations = 999) ##
## Call:
## adonis(formula = euc_out ~ sample_data(MCR)$SITE, permutations = 999)
##
## Permutation: free
## Number of permutations: 999
##
## Terms added sequentially (first to last)
##
## Df SumsOfSqs MeanSqs F.Model R2 Pr(>F)
## sample_data(MCR)$SITE 1 454.7 454.67 0.92848 0.07182 0.67
## Residuals 12 5876.3 489.69 0.92818
## Total 13 6330.9 1.00000
Site was not significant factor within the 2 Mid-Cayman Rise vent sites.
Check significance of all environmental parameters with the resident population.
Isolate vent-only ASVs
tmp <- filter(insitu_asv_wClass, CLASS == "Vent only")
list_of_resident <- as.character(unique(tmp$FeatureID))
length(list_of_resident)## [1] 8107
res_vent <- prune_taxa(list_of_resident, physeq_insitu)# dbrda_subset(subset_samples(res_vent, (SAMPLETYPE == "Vent")))
# Run with Boca outlier removed.
dbrda_subset(subset_samples(res_vent, (SAMPLETYPE == "Vent" & VENT != "Boca")))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 14.7753 1.6643 0.025 *
## ph 1 12.0022 1.3520 0.082 .
## persea 1 14.5056 1.6340 0.043 *
## mg 1 13.2338 1.4907 0.071 .
## h2 1 14.7886 1.6659 0.018 *
## h2s 1 8.8395 0.9957 0.540
## ch4 1 13.2512 1.4927 0.026 *
## prok 1 12.7473 1.4359 0.081 .
## Residual 3 26.6326
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
When we isolate only resident taxa (ASV detected only at vent sites), significance geochem parameters include temperature, percent seawater, H2, and CH4.
Run similar analysis, but isolate individual taxa. First isolate phyloseq objects to be without the Boca outlier and one with only vent sites.
# head(tax_table(physeq_insitu))
ventonly_noboca <- subset_samples(physeq_insitu, (SAMPLETYPE == "Vent" & VENT != "Boca"))
noboca <- subset_samples(physeq_insitu, (VENT != "Boca"))Ciliates: geochemistry and related parameters did not correspond to ciliate population.
dbrda_subset(subset_taxa(noboca, (Phylum == "Ciliophora")))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 6.9467 0.8819 0.677
## ph 1 6.6173 0.8401 0.772
## persea 1 10.5789 1.3430 0.155
## mg 1 9.9062 1.2576 0.203
## h2 1 8.6579 1.0991 0.330
## h2s 1 10.3819 1.3180 0.140
## ch4 1 10.4422 1.3257 0.083 .
## prok 1 8.6943 1.1038 0.333
## Residual 3 23.6307
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
dbrda_subset(subset_taxa(ventonly_noboca, (Phylum == "Ciliophora")))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 6.4016 0.8375 0.745
## ph 1 6.5246 0.8536 0.732
## persea 1 10.3845 1.3586 0.135
## mg 1 9.7638 1.2774 0.195
## h2 1 8.1861 1.0710 0.388
## h2s 1 10.2860 1.3457 0.121
## ch4 1 9.9759 1.3051 0.089 .
## prok 1 8.7354 1.1428 0.314
## Residual 3 22.9310
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Stramenopiles, MAST mostly: Temperature, H2, and CH4 were found to be significant drivers of stramenopile diversity and distribution.
dbrda_subset(subset_taxa(noboca, Phylum == "Sagenista"))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 3.2824 4.4217 0.010 **
## ph 1 1.1253 1.5159 0.234
## persea 1 0.8940 1.2043 0.332
## mg 1 0.7818 1.0531 0.411
## h2 1 2.5151 3.3881 0.016 *
## h2s 1 0.7650 1.0306 0.424
## ch4 1 1.8275 2.4619 0.040 *
## prok 1 0.8015 1.0797 0.406
## Residual 3 2.2270
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
dbrda_subset(subset_taxa(ventonly_noboca, Phylum == "Sagenista"))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 3.4272 4.9135 0.011 *
## ph 1 1.0088 1.4463 0.243
## persea 1 0.8386 1.2023 0.261
## mg 1 0.7495 1.0745 0.359
## h2 1 2.5290 3.6257 0.025 *
## h2s 1 0.6483 0.9294 0.470
## ch4 1 1.7811 2.5534 0.050 *
## prok 1 0.7071 1.0138 0.408
## Residual 3 2.0925
## ---
## Signif. codes: 0 '***' 0.001 '**' 0.01 '*' 0.05 '.' 0.1 ' ' 1
Radiolaria: no geochemical parameters drove radiolaria population distribution.
dbrda_subset(subset_taxa(noboca, Phylum == "Radiolaria"))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 5.1478 1.6672 0.156
## ph 1 2.4758 0.8018 0.646
## persea 1 2.1922 0.7100 0.682
## mg 1 2.3105 0.7483 0.670
## h2 1 3.5479 1.1490 0.365
## h2s 1 2.7811 0.9007 0.507
## ch4 1 4.1040 1.3291 0.210
## prok 1 1.8876 0.6113 0.810
## Residual 3 9.2633
dbrda_subset(subset_taxa(ventonly_noboca, Phylum == "Radiolaria"))## Permutation test for dbrda under reduced model
## Marginal effects of terms
## Permutation: free
## Number of permutations: 999
##
## Model: dbrda(formula = euc_out ~ temp + ph + persea + mg + h2 + h2s + ch4 + prok, distance = "euc", na.action = na.exclude)
## Df Variance F Pr(>F)
## temp 1 5.4300 2.1068 0.141
## ph 1 2.0717 0.8038 0.614
## persea 1 1.9471 0.7554 0.626
## mg 1 2.0848 0.8089 0.620
## h2 1 3.6622 1.4209 0.259
## h2s 1 2.4579 0.9536 0.461
## ch4 1 3.9291 1.5245 0.182
## prok 1 1.6088 0.6242 0.753
## Residual 3 7.7322
sessionInfo()## R version 4.1.0 (2021-05-18)
## Platform: x86_64-apple-darwin13.4.0 (64-bit)
## Running under: macOS Mojave 10.14.6
##
## Matrix products: default
## BLAS/LAPACK: /Users/sarahhu/anaconda3/envs/r_4.1/lib/libopenblasp-r0.3.15.dylib
##
## locale:
## [1] en_US.UTF-8/en_US.UTF-8/en_US.UTF-8/C/en_US.UTF-8/en_US.UTF-8
##
## attached base packages:
## [1] stats graphics grDevices utils datasets methods base
##
## other attached packages:
## [1] fuzzyjoin_0.1.6 DivNet_0.3.7 breakaway_4.7.3 geosphere_1.5-14
## [5] ggdendro_0.1.22 treemapify_2.5.5 vegan_2.5-7 lattice_0.20-45
## [9] permute_0.9-5 viridis_0.6.2 viridisLite_0.4.0 plotly_4.10.0
## [13] gt_0.3.1 ggupset_0.3.0 patchwork_1.1.1 compositions_2.0-4
## [17] decontam_1.12.0 phyloseq_1.36.0 cowplot_1.1.1 forcats_0.5.1
## [21] stringr_1.4.0 dplyr_1.0.7 purrr_0.3.4 readr_2.1.1
## [25] tidyr_1.1.4 tibble_3.1.6 ggplot2_3.3.5 tidyverse_1.3.1
##
## loaded via a namespace (and not attached):
## [1] readxl_1.3.1 backports_1.4.1 plyr_1.8.6
## [4] igraph_1.2.11 lazyeval_0.2.2 sp_1.4-6
## [7] splines_4.1.0 crosstalk_1.2.0 GenomeInfoDb_1.28.4
## [10] digest_0.6.29 foreach_1.5.1 htmltools_0.5.2
## [13] fansi_1.0.2 magrittr_2.0.1 checkmate_2.0.0
## [16] cluster_2.1.2 doParallel_1.0.16 tzdb_0.2.0
## [19] Biostrings_2.60.2 ggfittext_0.9.1 modelr_0.1.8
## [22] bayesm_3.1-4 vroom_1.5.7 colorspace_2.0-2
## [25] rvest_1.0.2 haven_2.4.3 xfun_0.29
## [28] crayon_1.4.2 RCurl_1.98-1.5 jsonlite_1.7.3
## [31] lme4_1.1-27.1 survival_3.2-13 iterators_1.0.13
## [34] ape_5.6-1 glue_1.6.1 gtable_0.3.0
## [37] zlibbioc_1.38.0 XVector_0.32.0 Rhdf5lib_1.14.2
## [40] BiocGenerics_0.38.0 DEoptimR_1.0-10 abind_1.4-5
## [43] scales_1.1.1 DBI_1.1.2 Rcpp_1.0.8
## [46] bit_4.0.4 stats4_4.1.0 htmlwidgets_1.5.4
## [49] httr_1.4.2 RColorBrewer_1.1-2 ellipsis_0.3.2
## [52] pkgconfig_2.0.3 farver_2.1.0 sass_0.4.0
## [55] dbplyr_2.1.1 utf8_1.2.2 tidyselect_1.1.1
## [58] labeling_0.4.2 rlang_0.4.12 reshape2_1.4.4
## [61] munsell_0.5.0 cellranger_1.1.0 tools_4.1.0
## [64] cli_3.1.0 generics_0.1.1 ade4_1.7-18
## [67] broom_0.7.11 evaluate_0.14 biomformat_1.20.0
## [70] fastmap_1.1.0 yaml_2.2.1 knitr_1.37
## [73] bit64_4.0.5 fs_1.5.2 robustbase_0.93-9
## [76] nlme_3.1-155 mvnfast_0.2.7 xml2_1.3.3
## [79] compiler_4.1.0 rstudioapi_0.13 reprex_2.0.1
## [82] bslib_0.3.1 stringi_1.7.6 highr_0.9
## [85] Matrix_1.4-0 nloptr_1.2.2.3 tensorA_0.36.2
## [88] multtest_2.48.0 vctrs_0.3.8 pillar_1.6.4
## [91] lifecycle_1.0.1 rhdf5filters_1.4.0 jquerylib_0.1.4
## [94] data.table_1.14.2 bitops_1.0-7 R6_2.5.1
## [97] gridExtra_2.3 IRanges_2.26.0 codetools_0.2-18
## [100] boot_1.3-28 MASS_7.3-55 assertthat_0.2.1
## [103] rhdf5_2.36.0 withr_2.4.3 S4Vectors_0.30.2
## [106] GenomeInfoDbData_1.2.6 mgcv_1.8-38 parallel_4.1.0
## [109] hms_1.1.1 grid_4.1.0 minqa_1.2.4
## [112] rmarkdown_2.11 Biobase_2.52.0 lubridate_1.8.0